Handle correctly the -n option for mount and umount

This commit is contained in:
sin 2013-09-06 11:01:03 +01:00
parent 7f7c3f29e9
commit 713f1cfdb2
2 changed files with 4 additions and 0 deletions

View File

@ -86,6 +86,8 @@ main(int argc, char *argv[])
case 't':
types = EARGF(usage());
break;
case 'n':
break;
default:
usage();
} ARGEND;

View File

@ -23,6 +23,8 @@ main(int argc, char *argv[])
case 'l':
flags |= MNT_DETACH;
break;
case 'n':
break;
default:
usage();
} ARGEND;