mirror of
https://git.busybox.net/busybox
synced 2026-02-07 20:50:26 +00:00
Fixed correctness of comment in rmmod.c - MKW
This commit is contained in:
parent
2129b146db
commit
c144e330c0
2 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue