diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2020-01-06 11:03:07 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2020-01-06 11:03:07 +0000 |
commit | 74066e49ecdeca255b7c9b2183c5f25e60636e6f (patch) | |
tree | 245ecef7928cab38449dbe4f286361e31c1fa1ee | |
parent | bb150ae362b76786de88719126bd24c8d7dd0306 (diff) |
do not allow passing options to smtpctl encrypt
-rw-r--r-- | usr.sbin/smtpd/smtpctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpctl.c b/usr.sbin/smtpd/smtpctl.c index a985172a3fb..129abb51835 100644 --- a/usr.sbin/smtpd/smtpctl.c +++ b/usr.sbin/smtpd/smtpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpctl.c,v 1.165 2019/07/23 08:11:10 gilles Exp $ */ +/* $OpenBSD: smtpctl.c,v 1.166 2020/01/06 11:03:06 gilles Exp $ */ /* * Copyright (c) 2013 Eric Faurot <eric@openbsd.org> @@ -945,7 +945,7 @@ do_encrypt(int argc, struct parameter *argv) if (argv) p = argv[0].u.u_str; - execl(PATH_ENCRYPT, "encrypt", p, (char *)NULL); + execl(PATH_ENCRYPT, "encrypt", "--", p, (char *)NULL); errx(1, "execl"); } |