diff options
author | 2020-04-22 16:52:04 +0000 | |
---|---|---|
committer | 2020-04-22 16:52:04 +0000 | |
commit | 1c4b649875b8e8a8801c320c27119906583f4dee (patch) | |
tree | 997ccb5bcee98f98042d7dee21dc29848208abab | |
parent | Add clock gates for OCOTP and TMU on i.MX8MQ and i.MX8MM. (diff) | |
download | wireguard-openbsd-1c4b649875b8e8a8801c320c27119906583f4dee.tar.xz wireguard-openbsd-1c4b649875b8e8a8801c320c27119906583f4dee.zip |
Log authentication verification failure with "info" priority.
ok markus@
-rw-r--r-- | sbin/iked/ikev2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/iked/ikev2.c b/sbin/iked/ikev2.c index 24eaf51ac2c..4478ae1beee 100644 --- a/sbin/iked/ikev2.c +++ b/sbin/iked/ikev2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ikev2.c,v 1.216 2020/04/15 18:41:45 tobhe Exp $ */ +/* $OpenBSD: ikev2.c,v 1.217 2020/04/22 16:52:04 tobhe Exp $ */ /* * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de> @@ -815,7 +815,8 @@ ikev2_ike_auth_recv(struct iked *env, struct iked_sa *sa, ibuf_release(authmsg); if (ret != 0) { - log_debug("%s: ikev2_msg_authverify failed", __func__); + log_info("%s: ikev2_msg_authverify failed", + SPI_SA(sa, __func__)); ikev2_send_auth_failed(env, sa); return (-1); } |