fix hyphen substitution in path
authorJohn Crispin <blogic@openwrt.org>
Thu, 19 Sep 2013 13:15:09 +0000 (15:15 +0200)
committerJohn Crispin <blogic@openwrt.org>
Thu, 19 Sep 2013 13:15:09 +0000 (15:15 +0200)
Signed-off-by: John Crispin <blogic@openwrt.org>
kmodloader.c

index 9fd5ae4..ab8a00b 100644 (file)
@@ -110,13 +110,13 @@ static char* get_module_path(char *name)
 
        uname(&ver);
        snprintf(path, 256, "%s" DEF_MOD_PATH "%s.ko", prefix, ver.release, name);
-       replace_dash(path);
+       replace_dash(basename(path));
 
        if (!stat(path, &s))
                return path;
 
        snprintf(path, 256, "%s" DEF_MOD_PATH "%s.ko", prefix, ver.release, name);
-       replace_underscore(path);
+       replace_underscore(basename(path));
 
        if (!stat(path, &s))
                return path;