Module Name: src
Committed By: ozaki-r
Date: Mon May 20 08:55:31 UTC 2019
Modified Files:
src/usr.sbin/puffs/mount_9p: ninepuffs.c
Log Message:
mount_9p: add missing -u option to the help message
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/usr.sbin/puffs/mount_9p/ninepuffs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/puffs/mount_9p/ninepuffs.c
diff -u src/usr.sbin/puffs/mount_9p/ninepuffs.c:1.25 src/usr.sbin/puffs/mount_9p/ninepuffs.c:1.26
--- src/usr.sbin/puffs/mount_9p/ninepuffs.c:1.25 Fri May 17 08:48:04 2019
+++ src/usr.sbin/puffs/mount_9p/ninepuffs.c Mon May 20 08:55:31 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: ninepuffs.c,v 1.25 2019/05/17 08:48:04 ozaki-r Exp $ */
+/* $NetBSD: ninepuffs.c,v 1.26 2019/05/20 08:55:31 ozaki-r Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@@ -31,7 +31,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: ninepuffs.c,v 1.25 2019/05/17 08:48:04 ozaki-r Exp $");
+__RCSID("$NetBSD: ninepuffs.c,v 1.26 2019/05/20 08:55:31 ozaki-r Exp $");
#endif /* !lint */
#include <sys/types.h>
@@ -58,7 +58,7 @@ __dead static void
usage(void)
{
- fprintf(stderr, "usage: %s [-s] [-o mntopts] [-p port] "
+ fprintf(stderr, "usage: %s [-su] [-o mntopts] [-p port] "
"[user@]server[:path] mountpoint\n", getprogname());
exit(1);
}