summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2001-03-12 23:03:59 +0000
committerderaadt <deraadt@openbsd.org>2001-03-12 23:03:59 +0000
commit84d0bb16b5896da836c950ccf368a2e8cec5751f (patch)
tree8bb0cb013922c3b19c5aaea0c368adb9c778fd84
parentSimplify vmapbuf by moving the vm_map_pmap computation off loop (inspired (diff)
downloadwireguard-openbsd-84d0bb16b5896da836c950ccf368a2e8cec5751f.tar.xz
wireguard-openbsd-84d0bb16b5896da836c950ccf368a2e8cec5751f.zip
correct warning; maurice@maurice.wan.nl
-rw-r--r--sbin/disklabel/editor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c
index 3812431d39f..7cd2ed849a3 100644
--- a/sbin/disklabel/editor.c
+++ b/sbin/disklabel/editor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: editor.c,v 1.74 2000/10/22 23:59:40 millert Exp $ */
+/* $OpenBSD: editor.c,v 1.75 2001/03/12 23:03:59 deraadt Exp $ */
/*
* Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -28,7 +28,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: editor.c,v 1.74 2000/10/22 23:59:40 millert Exp $";
+static char rcsid[] = "$OpenBSD: editor.c,v 1.75 2001/03/12 23:03:59 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -308,7 +308,7 @@ editor(lp, f, dev, fstabfile)
case 'n':
if (mountpoints == NULL) {
fputs("This option is not valid when run "
- "without the -F flag.\n", stderr);
+ "without the -f flag.\n", stderr);
break;
}
mpcopy(tmpmountpoints, omountpoints);