From: gilles Date: Sun, 3 May 2015 18:10:58 +0000 (+0000) Subject: S was misplaced in r1.89, the optarg that was removed was actually needed X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c3105d835665e500237cefdf5ab3bea505b20da0;p=openbsd 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 --- 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 @@ -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;