Module Name:    src
Committed By:   wiz
Date:           Tue Aug 20 21:07:21 UTC 2019

Modified Files:
        src/sbin/mount_umap: mount_umap.8 mount_umap.c

Log Message:
Sort options in usage.

filesystem -> file system


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sbin/mount_umap/mount_umap.8
cvs rdiff -u -r1.24 -r1.25 src/sbin/mount_umap/mount_umap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/mount_umap/mount_umap.8
diff -u src/sbin/mount_umap/mount_umap.8:1.20 src/sbin/mount_umap/mount_umap.8:1.21
--- src/sbin/mount_umap/mount_umap.8:1.20	Tue Aug 20 20:18:54 2019
+++ src/sbin/mount_umap/mount_umap.8	Tue Aug 20 21:07:21 2019
@@ -1,4 +1,4 @@
-.\"	$NetBSD: mount_umap.8,v 1.20 2019/08/20 20:18:54 perseant Exp $
+.\"	$NetBSD: mount_umap.8,v 1.21 2019/08/20 21:07:21 wiz Exp $
 .\"
 .\" Copyright (c) 1992, 1993, 1994
 .\"	The Regents of the University of California.  All rights reserved.
@@ -41,8 +41,8 @@
 .Nd user and group ID remapping file system layer
 .Sh SYNOPSIS
 .Nm
-.Op Fl o Ar options
 .Op Fl i Ar fsid
+.Op Fl o Ar options
 .Fl g Ar gid-mapfile
 .Fl u Ar uid-mapfile
 .Ar target
@@ -74,8 +74,8 @@ This flag is required.
 .It Fl i Ar fsid
 Use the specified
 .Ar fsid
-for the filesystem ID, rather than choosing one at random.
-This is useful if the filesystem is to be exported.
+for the file system ID, rather than choosing one at random.
+This is useful if the file system is to be exported.
 .It Fl o
 Options are specified with a
 .Fl o

Index: src/sbin/mount_umap/mount_umap.c
diff -u src/sbin/mount_umap/mount_umap.c:1.24 src/sbin/mount_umap/mount_umap.c:1.25
--- src/sbin/mount_umap/mount_umap.c:1.24	Tue Aug 20 20:18:54 2019
+++ src/sbin/mount_umap/mount_umap.c	Tue Aug 20 21:07:21 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: mount_umap.c,v 1.24 2019/08/20 20:18:54 perseant Exp $	*/
+/*	$NetBSD: mount_umap.c,v 1.25 2019/08/20 21:07:21 wiz Exp $	*/
 
 /*
  * Copyright (c) 1992, 1993, 1994
@@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1992, 19
 #if 0
 static char sccsid[] = "@(#)mount_umap.c	8.5 (Berkeley) 4/26/95";
 #else
-__RCSID("$NetBSD: mount_umap.c,v 1.24 2019/08/20 20:18:54 perseant Exp $");
+__RCSID("$NetBSD: mount_umap.c,v 1.25 2019/08/20 21:07:21 wiz Exp $");
 #endif
 #endif /* not lint */
 
@@ -269,6 +269,6 @@ static void
 usage(void)
 {
 	(void)fprintf(stderr,
-"usage: mount_umap [-o options] [-i fsid] -g groupmap -u usermap target_fs mount_point\n");
+"usage: mount_umap [-i fsid] [-o options] -g groupmap -u usermap target_fs mount_point\n");
 	exit(1);
 }

Reply via email to