diff options
author | Rob Landley | 2005-05-04 23:55:06 +0000 |
---|---|---|
committer | Rob Landley | 2005-05-04 23:55:06 +0000 |
commit | 4f65360a5f36e1841b13dc50108c290010347e7f (patch) | |
tree | ff4252a2dc6d31f7a8d1785043967757bd26dd58 /modutils/lsmod.c | |
parent | 918f2ab3d794172fcc089be3c3f4b0fe71537652 (diff) | |
download | busybox-4f65360a5f36e1841b13dc50108c290010347e7f.zip busybox-4f65360a5f36e1841b13dc50108c290010347e7f.tar.gz |
Tweak the "pretty lsmod for 2.6" patch to be seperately selectable.
Patch from Takeharu Kato.
Diffstat (limited to 'modutils/lsmod.c')
-rw-r--r-- | modutils/lsmod.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index 525fc2d..f2ee19f 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c @@ -164,7 +164,7 @@ extern int lsmod_main(int argc, char **argv) { printf("Module Size Used by"); check_tainted(); -#if defined(CONFIG_FEATURE_2_6_MODULES) +#if defined(CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT) { FILE *file; char line[4096]; @@ -204,6 +204,7 @@ extern int lsmod_main(int argc, char **argv) } fclose(file); } + return 0; /* Success */ #else if (bb_xprint_file_by_name("/proc/modules") < 0) { return 0; |