diff options
Diffstat (limited to 'modutils/depmod.c')
-rw-r--r-- | modutils/depmod.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modutils/depmod.c b/modutils/depmod.c index d6cc8ed..4718c4d 100644 --- a/modutils/depmod.c +++ b/modutils/depmod.c @@ -80,9 +80,11 @@ static int FAST_FUNC parse_module(const char *fname, struct stat *sb UNUSED_PARA && strncmp(ptr, "__ksymtab_", 10) == 0 ) { ptr += 10; - if (strncmp(ptr, "gpl", 3) == 0 || - strcmp(ptr, "strings") == 0) + if (strncmp(ptr, "gpl", 3) == 0 + || strcmp(ptr, "strings") == 0 + ) { continue; + } llist_add_to(&info->symbols, xstrdup(ptr)); ptr += strlen(ptr); } |