diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-05-03 18:10:59 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-05-03 18:10:59 +0000 |
commit | 8853b1ecd3d3b569bb92153f63140fd6a9e88f98 (patch) | |
tree | 732deb1f22d7e5e3cf15526473e09cde0d195ec1 /usr.sbin | |
parent | f0517532636e1777faef5fc057e2db4a5a54ffe7 (diff) |
S was misplaced in r1.89, the optarg that was removed was actually needed
by R, so reintroduce it in the proper place.
spotted and diff by Sunil Nimmagadda
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/enqueue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/enqueue.c b/usr.sbin/smtpd/enqueue.c index d0ff0cdfc83..761af40be98 100644 --- a/usr.sbin/smtpd/enqueue.c +++ b/usr.sbin/smtpd/enqueue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: enqueue.c,v 1.92 2015/05/03 17:53:50 gilles Exp $ */ +/* $OpenBSD: enqueue.c,v 1.93 2015/05/03 18:10:58 gilles Exp $ */ /* * Copyright (c) 2005 Henning Brauer <henning@bulabula.org> @@ -186,7 +186,7 @@ enqueue(int argc, char *argv[]) save_argv = argv; while ((ch = getopt(argc, argv, - "A:B:b:E::e:F:f:iJ::L:mN:o:p:qRStvV:x")) != -1) { + "A:B:b:E::e:F:f:iJ::L:mN:o:p:qR:StvV:x")) != -1) { switch (ch) { case 'f': fake_from = optarg; |