svn commit: r221371 - stable/8/sbin/umount

Ruslan Ermilov ru at FreeBSD.org
Tue May 3 10:01:09 UTC 2011


Author: ru
Date: Tue May  3 10:01:08 2011
New Revision: 221371
URL: http://svn.freebsd.org/changeset/base/221371

Log:
  MFC r219955: It's possible to unmount multiple items at once, make it clear.

Modified:
  stable/8/sbin/umount/umount.8
  stable/8/sbin/umount/umount.c
Directory Properties:
  stable/8/sbin/umount/   (props changed)

Modified: stable/8/sbin/umount/umount.8
==============================================================================
--- stable/8/sbin/umount/umount.8	Tue May  3 09:59:33 2011	(r221370)
+++ stable/8/sbin/umount/umount.8	Tue May  3 10:01:08 2011	(r221371)
@@ -37,7 +37,7 @@
 .Sh SYNOPSIS
 .Nm
 .Op Fl fv
-.Ar special | node | fsid
+.Ar special ... | node ... | fsid ...
 .Nm
 .Fl a | A
 .Op Fl F Ar fstab

Modified: stable/8/sbin/umount/umount.c
==============================================================================
--- stable/8/sbin/umount/umount.c	Tue May  3 09:59:33 2011	(r221370)
+++ stable/8/sbin/umount/umount.c	Tue May  3 10:01:08 2011	(r221371)
@@ -599,7 +599,7 @@ usage()
 {
 
 	(void)fprintf(stderr, "%s\n%s\n",
-	    "usage: umount [-fv] special | node | fsid",
+	    "usage: umount [-fv] special ... | node ... | fsid ...",
 	    "       umount -a | -A [-F fstab] [-fv] [-h host] [-t type]");
 	exit(1);
 }


More information about the svn-src-all mailing list