kmodloader: remove redundant glob wildcard char
authorYousong Zhou <yszhou4tech@gmail.com>
Fri, 13 Jan 2017 17:00:30 +0000 (01:00 +0800)
committerFelix Fietkau <nbd@nbd.name>
Sun, 15 Jan 2017 17:51:54 +0000 (18:51 +0100)
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
kmodloader.c

index f80835a7f942ba80a71fb6f44b263055fbf2de8b..9fe7d7f56cbd1c6677b2fe86744165ef5e87301e 100644 (file)
@@ -762,7 +762,7 @@ static int main_modprobe(int argc, char **argv)
 static int main_loader(int argc, char **argv)
 {
        int gl_flags = GLOB_NOESCAPE | GLOB_MARK;
-       char *dir = "/etc/modules.d/*";
+       char *dir = "/etc/modules.d/";
        struct module *m;
        glob_t gl;
        char *path;