summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2019-04-28 16:28:00 +0000
committerjmc <jmc@openbsd.org>2019-04-28 16:28:00 +0000
commitea0b20a4802249199a4604fb851133bdf0ff280a (patch)
treec10310478572c1c66fcd62060b9ea5571e85cfa4
parentincorporate GZIPFLAGS into place everywhere (diff)
downloadwireguard-openbsd-ea0b20a4802249199a4604fb851133bdf0ff280a.tar.xz
wireguard-openbsd-ea0b20a4802249199a4604fb851133bdf0ff280a.zip
fix misplaced hyphen in usage();
-rw-r--r--sbin/vnconfig/vnconfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/vnconfig/vnconfig.c b/sbin/vnconfig/vnconfig.c
index f783fef7767..6a89df98f6d 100644
--- a/sbin/vnconfig/vnconfig.c
+++ b/sbin/vnconfig/vnconfig.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vnconfig.c,v 1.3 2019/04/28 14:46:00 deraadt Exp $ */
+/* $OpenBSD: vnconfig.c,v 1.4 2019/04/28 16:28:00 jmc Exp $ */
/*
* Copyright (c) 1993 University of Utah.
* Copyright (c) 1990, 1993
@@ -363,6 +363,6 @@ usage(void)
fprintf(stderr,
" vnconfig -l [vnd_dev]\n");
fprintf(stderr,
- " vnconfig -u -[v] vnd_dev\n");
+ " vnconfig -u [-v] vnd_dev\n");
exit(1);
}