diff options
| author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-24 19:51:54 +0000 |
|---|---|---|
| committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-24 19:51:54 +0000 |
| commit | f0092d4800f2e3ac7bcb22ed2b993e37a62fe853 (patch) | |
| tree | 3df134025b31cc1d90f888d8c1c3dcb02cf9851e /modutils | |
| parent | 34863629d3d433addbdbf5f3251eb0390d578b62 (diff) | |
| download | busybox-w32-f0092d4800f2e3ac7bcb22ed2b993e37a62fe853.tar.gz busybox-w32-f0092d4800f2e3ac7bcb22ed2b993e37a62fe853.tar.bz2 busybox-w32-f0092d4800f2e3ac7bcb22ed2b993e37a62fe853.zip | |
Make output match the real lsmod -- print (autoclean) type
stuff first not last.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@1929 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'modutils')
| -rw-r--r-- | modutils/lsmod.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index c97d199a6..a853db888 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c | |||
| @@ -103,12 +103,6 @@ extern int lsmod_main(int argc, char **argv) | |||
| 103 | deps = xrealloc(deps, bufsize = count); | 103 | deps = xrealloc(deps, bufsize = count); |
| 104 | } | 104 | } |
| 105 | printf("%-20s%8lu%4ld ", mn, info.size, info.usecount); | 105 | printf("%-20s%8lu%4ld ", mn, info.size, info.usecount); |
| 106 | if (count) printf("["); | ||
| 107 | for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) { | ||
| 108 | printf("%s%s", dn, (j==count-1)? "":" "); | ||
| 109 | } | ||
| 110 | if (count) printf("] "); | ||
| 111 | |||
| 112 | if (info.flags & NEW_MOD_DELETED) | 106 | if (info.flags & NEW_MOD_DELETED) |
| 113 | printf("(deleted)"); | 107 | printf("(deleted)"); |
| 114 | else if (info.flags & NEW_MOD_INITIALIZING) | 108 | else if (info.flags & NEW_MOD_INITIALIZING) |
| @@ -121,6 +115,12 @@ extern int lsmod_main(int argc, char **argv) | |||
| 121 | if (!(info.flags & NEW_MOD_USED_ONCE)) | 115 | if (!(info.flags & NEW_MOD_USED_ONCE)) |
| 122 | printf("(unused)"); | 116 | printf("(unused)"); |
| 123 | } | 117 | } |
| 118 | if (count) printf("["); | ||
| 119 | for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) { | ||
| 120 | printf("%s%s", dn, (j==count-1)? "":" "); | ||
| 121 | } | ||
| 122 | if (count) printf("] "); | ||
| 123 | |||
| 124 | printf("\n"); | 124 | printf("\n"); |
| 125 | } | 125 | } |
| 126 | 126 | ||
