diff options
| author | Jessica Clarke <jrtc27@FreeBSD.org> | 2024-08-12 21:53:13 +0000 |
|---|---|---|
| committer | Jessica Clarke <jrtc27@FreeBSD.org> | 2024-08-12 21:53:13 +0000 |
| commit | 97c31cc80098956688a36a173a42b54549350d40 (patch) | |
| tree | daf70585d2b66238d25c44293774032e113ca694 /usr.sbin/kldxref/kldxref.c | |
| parent | b70247df0ba43a97fb4b06bbc85163a3ecaf08a5 (diff) | |
Diffstat (limited to 'usr.sbin/kldxref/kldxref.c')
| -rw-r--r-- | usr.sbin/kldxref/kldxref.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/kldxref/kldxref.c b/usr.sbin/kldxref/kldxref.c index 122551940ac7..6bb0469a9ff5 100644 --- a/usr.sbin/kldxref/kldxref.c +++ b/usr.sbin/kldxref/kldxref.c @@ -839,8 +839,8 @@ main(int argc, char *argv[]) continue; /* * Skip files that generate errors like .debug, .symbol and .pkgsave - * by generally skipping all files not ending with ".ko" or that have - * no dots in the name (like kernel). + * by generally skipping all files which neither end with ".ko" + * nor have no dots in the name (like kernel). */ dot = strrchr(p->fts_name, '.'); if (dot != NULL && strcmp(dot, ".ko") != 0) |
