diff options
author | Denys Vlasenko | 2009-05-18 13:08:04 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-05-18 13:08:04 +0200 |
commit | 16bda3bd1f8e486ed93f5182fc777be1e813bce7 (patch) | |
tree | bf6571888d13007e3e51664b9e9eba9346bb7838 /modutils/modutils.c | |
parent | c396fe6306f9a769d3a91809eb03361640c2f2fc (diff) | |
download | busybox-16bda3bd1f8e486ed93f5182fc777be1e813bce7.zip busybox-16bda3bd1f8e486ed93f5182fc777be1e813bce7.tar.gz |
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 0f6cb0f..f437a98 100644 --- a/modutils/modutils.c +++ b/modutils/modutils.c @@ -57,7 +57,7 @@ char * FAST_FUNC filename2modname(const char *filename, char *modname) from = bb_get_last_path_component_nostrip(filename); for (i = 0; i < (MODULE_NAME_LEN-1) && from[i] != '\0' && from[i] != '.'; i++) modname[i] = (from[i] == '-') ? '_' : from[i]; - modname[i] = 0; + modname[i] = '\0'; return modname; } |