diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2020-12-29 12:17:55 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2020-12-29 12:17:55 +0000 |
commit | 78c615e4378f7b140e168f8fdcecf9d87210d1d5 (patch) | |
tree | 9f0f8fddac799b0c41bcc180f220fecc82d0faf8 /usr.sbin/smtpd | |
parent | 8ca531581d8f7b37dfe55792b5f37bd2f790851d (diff) |
sync usage() with SYNOPSIS; the -S option remains
undocumented, at least for now;
Diffstat (limited to 'usr.sbin/smtpd')
-rw-r--r-- | usr.sbin/smtpd/smtpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpc.c b/usr.sbin/smtpd/smtpc.c index 8ad9b7c1e29..ec77e1593f8 100644 --- a/usr.sbin/smtpd/smtpc.c +++ b/usr.sbin/smtpd/smtpc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpc.c,v 1.12 2020/12/21 11:48:38 martijn Exp $ */ +/* $OpenBSD: smtpc.c,v 1.13 2020/12/29 12:17:54 jmc Exp $ */ /* * Copyright (c) 2018 Eric Faurot <eric@openbsd.org> @@ -57,7 +57,7 @@ usage(void) extern char *__progname; fprintf(stderr, "usage: %s [-Chnv] [-a authfile] [-F from] [-H helo] " - "[-s server] [-S name] rcpt ...\n", __progname); + "[-s server] [recipient ...]\n", __progname); exit(1); } |