diff options
author | 2010-09-30 14:25:54 +0000 | |
---|---|---|
committer | 2010-09-30 14:25:54 +0000 | |
commit | 63a18daff8c6242de96fc78e5ef4403cd389adf9 (patch) | |
tree | 8dbeeaf32202fcad8fc8f2528a3a93d58701fe11 | |
parent | check that there are transforms in the proposal before trying (diff) | |
download | wireguard-openbsd-63a18daff8c6242de96fc78e5ef4403cd389adf9.tar.xz wireguard-openbsd-63a18daff8c6242de96fc78e5ef4403cd389adf9.zip |
promote openssl errors to the warning level; ok reyk
-rw-r--r-- | sbin/iked/ca.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sbin/iked/ca.c b/sbin/iked/ca.c index 7d9bbe20e82..29bafc7ed66 100644 --- a/sbin/iked/ca.c +++ b/sbin/iked/ca.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ca.c,v 1.10 2010/06/29 21:04:42 reyk Exp $ */ +/* $OpenBSD: ca.c,v 1.11 2010/09/30 14:25:54 mikeb Exp $ */ /* $vantronix: ca.c,v 1.29 2010/06/02 12:22:58 reyk Exp $ */ /* @@ -1119,12 +1119,8 @@ void ca_sslerror(void) { u_long error; - extern int verbose; - - if (verbose < 3) - return; while ((error = ERR_get_error()) != 0) - log_debug("%s: %.100s", __func__, + log_warn("%s: %.100s", __func__, ERR_error_string(error, NULL)); } |