summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim van der Molen <tim@cvs.openbsd.org>2018-06-28 17:40:11 +0000
committerTim van der Molen <tim@cvs.openbsd.org>2018-06-28 17:40:11 +0000
commit2b1398c8ba3dd3db1578303b7080ee88373f6dfd (patch)
tree2058cda61d0934d347f23550e412a65d7c192e9e
parentc0152f1d3f0e58371c744813b1b4b31364d44131 (diff)
Don't ignore -n; OK gilles@
-rw-r--r--usr.sbin/smtpd/smtpd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c
index e6c525eb948..1816cb4ebe4 100644
--- a/usr.sbin/smtpd/smtpd.c
+++ b/usr.sbin/smtpd/smtpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.c,v 1.300 2018/06/18 18:19:14 gilles Exp $ */
+/* $OpenBSD: smtpd.c,v 1.301 2018/06/28 17:40:10 tim Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -565,6 +565,8 @@ main(int argc, char *argv[])
if (argc || *argv)
usage();
+ env->sc_opts |= opts;
+
ssl_init();
if (parse_config(conf, conffile, opts))