Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>1999-12-17 03:01:46 +0300
committerMark Whitley <markw@lineo.com>1999-12-17 03:01:46 +0300
commitc144e330c0342a8ed0c9d917fd5a064317652c8a (patch)
tree2df323ef9cf138b357f2201bebea6c47b697139c /rmmod.c
parent2129b146db0bb78507c7394d7555715dfb29ee0c (diff)
Fixed correctness of comment in rmmod.c - MKW
Diffstat (limited to 'rmmod.c')
-rw-r--r--rmmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rmmod.c b/rmmod.c
index 7d3eac51e..650a5b04f 100644
--- a/rmmod.c
+++ b/rmmod.c
@@ -51,7 +51,7 @@ extern int rmmod_main(int argc, char **argv)
while (*(++(*argv))) {
switch (**argv) {
case 'a':
- /* Unload _all_ modules via NULL delete_module() call */
+ /* Unload _all_ unused modules via NULL delete_module() call */
if (delete_module(NULL)) {
perror("rmmod");
exit( FALSE);