Fixed correctness of comment in rmmod.c - MKW

This commit is contained in:
Mark Whitley 1999-12-17 00:01:46 +00:00
parent 2129b146db
commit c144e330c0
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ extern int rmmod_main(int argc, char **argv)
while (*(++(*argv))) { while (*(++(*argv))) {
switch (**argv) { switch (**argv) {
case 'a': case 'a':
/* Unload _all_ modules via NULL delete_module() call */ /* Unload _all_ unused modules via NULL delete_module() call */
if (delete_module(NULL)) { if (delete_module(NULL)) {
perror("rmmod"); perror("rmmod");
exit( FALSE); exit( FALSE);

View File

@ -51,7 +51,7 @@ extern int rmmod_main(int argc, char **argv)
while (*(++(*argv))) { while (*(++(*argv))) {
switch (**argv) { switch (**argv) {
case 'a': case 'a':
/* Unload _all_ modules via NULL delete_module() call */ /* Unload _all_ unused modules via NULL delete_module() call */
if (delete_module(NULL)) { if (delete_module(NULL)) {
perror("rmmod"); perror("rmmod");
exit( FALSE); exit( FALSE);