diff options
-rw-r--r-- | modutils/modinfo.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modutils/modinfo.c b/modutils/modinfo.c index cc501825c..db134bd00 100644 --- a/modutils/modinfo.c +++ b/modutils/modinfo.c | |||
@@ -44,7 +44,7 @@ static int display(const char *data, const char *pattern, int flag) | |||
44 | } | 44 | } |
45 | 45 | ||
46 | static void modinfo(const char *path, const char *version, | 46 | static void modinfo(const char *path, const char *version, |
47 | struct modinfo_env *env) | 47 | const struct modinfo_env *env) |
48 | { | 48 | { |
49 | static const char *const shortcuts[] = { | 49 | static const char *const shortcuts[] = { |
50 | "filename", | 50 | "filename", |
@@ -82,11 +82,13 @@ static void modinfo(const char *path, const char *version, | |||
82 | if (field) | 82 | if (field) |
83 | tags |= OPT_F; | 83 | tags |= OPT_F; |
84 | for (j = 1; (1<<j) & (OPT_TAGS + OPT_F); j++) { | 84 | for (j = 1; (1<<j) & (OPT_TAGS + OPT_F); j++) { |
85 | const char *pattern = field; | 85 | const char *pattern; |
86 | if ((1<<j) & OPT_TAGS) | 86 | |
87 | pattern = shortcuts[j]; | ||
88 | if (!((1<<j) & tags)) | 87 | if (!((1<<j) & tags)) |
89 | continue; | 88 | continue; |
89 | pattern = field; | ||
90 | if ((1<<j) & OPT_TAGS) | ||
91 | pattern = shortcuts[j]; | ||
90 | length = strlen(pattern); | 92 | length = strlen(pattern); |
91 | ptr = the_module; | 93 | ptr = the_module; |
92 | while (1) { | 94 | while (1) { |