diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-08-06 08:53:13 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-08-06 08:53:13 +0000 |
commit | b08e4c8c3109dc1602a326c4b69eb9c625b70255 (patch) | |
tree | 36e608be49a477223e1f5da62df48803f37b5322 /modutils/lsmod.c | |
parent | fe66aaf0f9ace8195351fa029aa3be5ec42170cd (diff) | |
download | busybox-w32-b08e4c8c3109dc1602a326c4b69eb9c625b70255.tar.gz busybox-w32-b08e4c8c3109dc1602a326c4b69eb9c625b70255.tar.bz2 busybox-w32-b08e4c8c3109dc1602a326c4b69eb9c625b70255.zip |
Steven Scholz writes:
the output of lsmod (busybox-1.00-pre2) contains IMHO one "\n" too
much when using CONFIG_FEATURE_CHECK_TAINTED_MODULE:
~ # lsmod
Module Size Used by Tainted: P
ds 8364 1
m8xx_pcmcia 5388 1
pcmcia_core 40736 0 [ds m8xx_pcmcia]
and this patch from Steven fixes the problem
git-svn-id: svn://busybox.net/trunk/busybox@7172 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'modutils/lsmod.c')
-rw-r--r-- | modutils/lsmod.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index f1eebfc9f..1b914e720 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c | |||
@@ -66,7 +66,6 @@ static void check_tainted(void) | |||
66 | else { | 66 | else { |
67 | printf(" Not tainted\n"); | 67 | printf(" Not tainted\n"); |
68 | } | 68 | } |
69 | printf("\n"); | ||
70 | } | 69 | } |
71 | #endif | 70 | #endif |
72 | 71 | ||