diff options
| -rw-r--r-- | sys/kern/kern_ctf.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/sys/kern/kern_ctf.c b/sys/kern/kern_ctf.c index e9a4f98a98dc..aafa75eff097 100644 --- a/sys/kern/kern_ctf.c +++ b/sys/kern/kern_ctf.c @@ -182,10 +182,10 @@ link_elf_ctf_get(linker_file_t lf, linker_ctf_t *lc)  		goto out;  	} -	/* Check if version 2. */ -	if (cth.cth_version != CTF_VERSION_2) { -		printf("%s(%d): module %s CTF format version is %d " -		    "(2 expected)\n", +	if (cth.cth_version != CTF_VERSION_2 && +	    cth.cth_version != CTF_VERSION_3) { +		printf( +		    "%s(%d): module %s CTF format has unsupported version %d\n",  		    __func__, __LINE__, lf->pathname, cth.cth_version);  		error = EFTYPE;  		goto out; | 
