From: Mark Whitley Date: Fri, 17 Dec 1999 00:01:46 +0000 (-0000) Subject: Fixed correctness of comment in rmmod.c - MKW X-Git-Tag: 0_40~42 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c144e330c0342a8ed0c9d917fd5a064317652c8a;p=oweals%2Fbusybox.git Fixed correctness of comment in rmmod.c - MKW --- diff --git a/modutils/rmmod.c b/modutils/rmmod.c index 7d3eac51e..650a5b04f 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); 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);