diff options
author | 2020-12-29 12:17:54 +0000 | |
---|---|---|
committer | 2020-12-29 12:17:54 +0000 | |
commit | c6061690092d0e82eea03dee76e9ac91fb8e07d6 (patch) | |
tree | cdbd78a30169c59b4e492d5625c7fa9a56f38960 | |
parent | getifaddrs() can return entries where ifa_addr is NULL. Check for this (diff) | |
download | wireguard-openbsd-c6061690092d0e82eea03dee76e9ac91fb8e07d6.tar.xz wireguard-openbsd-c6061690092d0e82eea03dee76e9ac91fb8e07d6.zip |
sync usage() with SYNOPSIS; the -S option remains
undocumented, at least for now;
-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); } |