diff options
-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 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); @@ -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); |