diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-18 13:08:04 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-18 13:08:04 +0200 |
commit | 16bda3bd1f8e486ed93f5182fc777be1e813bce7 (patch) | |
tree | bf6571888d13007e3e51664b9e9eba9346bb7838 /modutils/modutils.c | |
parent | c396fe6306f9a769d3a91809eb03361640c2f2fc (diff) | |
download | busybox-w32-16bda3bd1f8e486ed93f5182fc777be1e813bce7.tar.gz busybox-w32-16bda3bd1f8e486ed93f5182fc777be1e813bce7.tar.bz2 busybox-w32-16bda3bd1f8e486ed93f5182fc777be1e813bce7.zip |
depmod: fix handling of .gz modules
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils/modutils.c')
-rw-r--r-- | modutils/modutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modutils.c b/modutils/modutils.c index 0f6cb0f2d..f437a9829 100644 --- a/modutils/modutils.c +++ b/modutils/modutils.c | |||
@@ -57,7 +57,7 @@ char * FAST_FUNC filename2modname(const char *filename, char *modname) | |||
57 | from = bb_get_last_path_component_nostrip(filename); | 57 | from = bb_get_last_path_component_nostrip(filename); |
58 | for (i = 0; i < (MODULE_NAME_LEN-1) && from[i] != '\0' && from[i] != '.'; i++) | 58 | for (i = 0; i < (MODULE_NAME_LEN-1) && from[i] != '\0' && from[i] != '.'; i++) |
59 | modname[i] = (from[i] == '-') ? '_' : from[i]; | 59 | modname[i] = (from[i] == '-') ? '_' : from[i]; |
60 | modname[i] = 0; | 60 | modname[i] = '\0'; |
61 | 61 | ||
62 | return modname; | 62 | return modname; |
63 | } | 63 | } |