diff options
author | Mark Whitley | 1999-12-17 00:01:46 +0000 |
---|---|---|
committer | Mark Whitley | 1999-12-17 00:01:46 +0000 |
commit | c144e330c0342a8ed0c9d917fd5a064317652c8a (patch) | |
tree | 2df323ef9cf138b357f2201bebea6c47b697139c | |
parent | 2129b146db0bb78507c7394d7555715dfb29ee0c (diff) | |
download | busybox-c144e330c0342a8ed0c9d917fd5a064317652c8a.zip busybox-c144e330c0342a8ed0c9d917fd5a064317652c8a.tar.gz |
Fixed correctness of comment in rmmod.c - MKW
-rw-r--r-- | modutils/rmmod.c | 2 | ||||
-rw-r--r-- | rmmod.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modutils/rmmod.c b/modutils/rmmod.c index 7d3eac5..650a5b0 100644 --- a/modutils/rmmod.c +++ b/modutils/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); @@ -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); |