minor changes to mount/umount to support-by-ignoring the "-v" flag.
Added optional core dumping as a feature for init, and include a rewrite of syslogd so that it now supports multiple concurrent connections. -Erik
This commit is contained in:
@ -418,6 +418,7 @@ extern int mount_main(int argc, char **argv)
|
||||
break;
|
||||
#endif
|
||||
case 'v':
|
||||
break; /* ignore -v */
|
||||
case 'h':
|
||||
case '-':
|
||||
goto goodbye;
|
||||
|
@ -260,6 +260,8 @@ extern int umount_main(int argc, char **argv)
|
||||
doRemount = TRUE;
|
||||
break;
|
||||
#endif
|
||||
case 'v':
|
||||
break; /* ignore -v */
|
||||
default:
|
||||
usage(umount_usage);
|
||||
}
|
||||
|
Reference in New Issue
Block a user