Fixed correctness of comment in rmmod.c - MKW
This commit is contained in:
parent
2129b146db
commit
c144e330c0
@ -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);
|
||||
|
2
rmmod.c
2
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);
|
||||
|
Loading…
Reference in New Issue
Block a user