diff options
author | 2017-10-12 09:28:56 +0000 | |
---|---|---|
committer | 2017-10-12 09:28:56 +0000 | |
commit | d6e9af8a0786fd7926185f2e1cc521ce50d09a24 (patch) | |
tree | a1ffb0b75d719cf25e0e81456e170170e6a4d0eb | |
parent | Use a temporary variable in rw_status() to dereference only once the (diff) | |
download | wireguard-openbsd-d6e9af8a0786fd7926185f2e1cc521ce50d09a24.tar.xz wireguard-openbsd-d6e9af8a0786fd7926185f2e1cc521ce50d09a24.zip |
add -G to usage();
-rw-r--r-- | usr.sbin/spamdb/spamdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/spamdb/spamdb.c b/usr.sbin/spamdb/spamdb.c index 106aab645e4..fb23337fd8d 100644 --- a/usr.sbin/spamdb/spamdb.c +++ b/usr.sbin/spamdb/spamdb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamdb.c,v 1.32 2017/10/11 18:25:07 millert Exp $ */ +/* $OpenBSD: spamdb.c,v 1.33 2017/10/12 09:28:56 jmc Exp $ */ /* * Copyright (c) 2004 Bob Beck. All rights reserved. @@ -278,7 +278,7 @@ extern char *__progname; static int usage(void) { - fprintf(stderr, "usage: %s [[-Tt] -a keys] [[-Tt] -d keys]\n", __progname); + fprintf(stderr, "usage: %s [[-Tt] -a keys] [[-GTt] -d keys]\n", __progname); exit(1); /* NOTREACHED */ } |