diff options
author | 2014-10-02 19:14:56 +0000 | |
---|---|---|
committer | 2014-10-02 19:14:56 +0000 | |
commit | 0ff796a2767b979f3a99e92343e439f42595cd21 (patch) | |
tree | 8201f201519da3f8a1b79544715cd647bd82cc13 | |
parent | Pass the right bus_dmatag_t to the children. (diff) | |
download | wireguard-openbsd-0ff796a2767b979f3a99e92343e439f42595cd21.tar.xz wireguard-openbsd-0ff796a2767b979f3a99e92343e439f42595cd21.zip |
no need to set the same field NULL twice ;-)
ok reyk@
-rw-r--r-- | usr.sbin/smtpd/ca.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/ca.c b/usr.sbin/smtpd/ca.c index ea9c83f49f4..94e341f1ce9 100644 --- a/usr.sbin/smtpd/ca.c +++ b/usr.sbin/smtpd/ca.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ca.c,v 1.10 2014/07/10 20:16:48 jsg Exp $ */ +/* $OpenBSD: ca.c,v 1.11 2014/10/02 19:14:56 gilles Exp $ */ /* * Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org> @@ -561,8 +561,6 @@ ca_engine_init(void) if (rsa_default->rsa_mod_exp == NULL) rsae_method.rsa_mod_exp = NULL; - if (rsa_default->rsa_mod_exp == NULL) - rsae_method.rsa_mod_exp = NULL; if (rsa_default->bn_mod_exp == NULL) rsae_method.bn_mod_exp = NULL; if (rsa_default->rsa_keygen == NULL) |