diff options
author | Denys Vlasenko | 2009-06-22 00:47:18 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-06-22 00:47:18 +0200 |
commit | fbb12ddc6a53ad97ff6bcc7ed9b253c09001ad2f (patch) | |
tree | 94c82f9eac30c86a1ec4f4d06f6c17b72b47cf3e /modutils/modutils.c | |
parent | b6bca7703bbe6aacec0bda964c82fad389a02b69 (diff) | |
download | busybox-1_14_2.zip busybox-1_14_2.tar.gz |
post 1.14.1 fixes; bump version to 1.14.21_14_2
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; } |