diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2012-08-23 13:06:30 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2012-08-23 13:06:30 +0000 |
commit | 5b2c981c4a4f6a9e8e1d389306494c2c956c2835 (patch) | |
tree | 33033762627c9fb89e2c47a64d9838423994da7b | |
parent | b02fe053d44fde8ec0dfd5a83ae1ce1c2ca59319 (diff) |
add -R to sendmail compat flags that do nothing (for now)
ok gilles@
-rw-r--r-- | usr.sbin/smtpd/enqueue.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/enqueue.c b/usr.sbin/smtpd/enqueue.c index 81142b32894..ad442be9633 100644 --- a/usr.sbin/smtpd/enqueue.c +++ b/usr.sbin/smtpd/enqueue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: enqueue.c,v 1.58 2012/08/23 13:04:41 todd Exp $ */ +/* $OpenBSD: enqueue.c,v 1.59 2012/08/23 13:06:29 todd Exp $ */ /* * Copyright (c) 2005 Henning Brauer <henning@bulabula.org> @@ -175,7 +175,7 @@ enqueue(int argc, char *argv[]) time(×tamp); while ((ch = getopt(argc, argv, - "A:B:b:E::e:F:f:iJ::L:mN:o:p:qtvx")) != -1) { + "A:B:b:E::e:F:f:iJ::L:mN:o:p:qR:tvx")) != -1) { switch (ch) { case 'f': fake_from = optarg; @@ -201,6 +201,7 @@ enqueue(int argc, char *argv[]) case 'N': /* XXX: DSN */ case 'o': case 'p': + case 'R': case 'x': break; case 'q': |