summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortobhe <tobhe@openbsd.org>2021-03-06 22:27:39 +0000
committertobhe <tobhe@openbsd.org>2021-03-06 22:27:39 +0000
commitcc7a24bd137ff75dd60ee431cce0fb77bc1d9aa5 (patch)
tree5d5ea95649200c793005350168aeb75e34e64585
parentFix PRINT macro, the suffix param to sshlog() was missing. (diff)
downloadwireguard-openbsd-cc7a24bd137ff75dd60ee431cce0fb77bc1d9aa5.tar.xz
wireguard-openbsd-cc7a24bd137ff75dd60ee431cce0fb77bc1d9aa5.zip
whitespace
-rw-r--r--sbin/iked/ikev2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/iked/ikev2.c b/sbin/iked/ikev2.c
index 93d542ce803..d99056def4b 100644
--- a/sbin/iked/ikev2.c
+++ b/sbin/iked/ikev2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ikev2.c,v 1.313 2021/03/05 22:26:04 tobhe Exp $ */
+/* $OpenBSD: ikev2.c,v 1.314 2021/03/06 22:27:39 tobhe Exp $ */
/*
* Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de>
@@ -6196,7 +6196,7 @@ ikev2_childsa_enable(struct iked *env, struct iked_sa *sa)
struct ibuf *flowbuf = NULL;
char *buf;
uint16_t encrid = 0, integrid = 0, groupid = 0;
- size_t encrlen = 0 , integrlen = 0;
+ size_t encrlen = 0, integrlen = 0;
TAILQ_FOREACH(csa, &sa->sa_childsas, csa_entry) {
if (csa->csa_rekey || csa->csa_loaded)