summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2014-09-03 08:26:00 +0000
committerjmc <jmc@openbsd.org>2014-09-03 08:26:00 +0000
commit9d7d50d159c3eac61a7feab2f1a5457220cfa2a0 (patch)
treefa49e48c8a0e8b2a444cfae6b3c010e2c1879b45
parentkill md5 support, broken since May (diff)
downloadwireguard-openbsd-9d7d50d159c3eac61a7feab2f1a5457220cfa2a0.tar.xz
wireguard-openbsd-9d7d50d159c3eac61a7feab2f1a5457220cfa2a0.zip
remove -m from usage();
-rw-r--r--usr.bin/encrypt/encrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/encrypt/encrypt.c b/usr.bin/encrypt/encrypt.c
index 94ccada82d9..eaf26c7e1b2 100644
--- a/usr.bin/encrypt/encrypt.c
+++ b/usr.bin/encrypt/encrypt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: encrypt.c,v 1.31 2014/09/03 07:47:50 giovanni Exp $ */
+/* $OpenBSD: encrypt.c,v 1.32 2014/09/03 08:26:00 jmc Exp $ */
/*
* Copyright (c) 1996, Jason Downs. All rights reserved.
@@ -58,7 +58,7 @@ usage(void)
{
(void)fprintf(stderr,
- "usage: %s [-km] [-b rounds] [-c class] [-p | string] [-s salt]\n",
+ "usage: %s [-k] [-b rounds] [-c class] [-p | string] [-s salt]\n",
__progname);
exit(1);
}