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))) {
|
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);
|
||||||
|
2
rmmod.c
2
rmmod.c
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user