diff options
author | tobhe <tobhe@cvs.openbsd.org> | 2020-10-22 17:06:10 +0000 |
---|---|---|
committer | tobhe <tobhe@cvs.openbsd.org> | 2020-10-22 17:06:10 +0000 |
commit | 1a022053550da01880eb6cad017385c4d3a7e0a9 (patch) | |
tree | 8d0a6de1c4926d720b9d09ffabb4c7f7ddadf309 /sbin | |
parent | c720b5d2e4279c73cfd01f3e745788acb0fee9ae (diff) |
Add missing break.
ok patrick@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/iked/ikev2_pld.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/iked/ikev2_pld.c b/sbin/iked/ikev2_pld.c index edb13024bbd..a279560980b 100644 --- a/sbin/iked/ikev2_pld.c +++ b/sbin/iked/ikev2_pld.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ikev2_pld.c,v 1.104 2020/10/19 17:02:57 tobhe Exp $ */ +/* $OpenBSD: ikev2_pld.c,v 1.105 2020/10/22 17:06:09 tobhe Exp $ */ /* * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de> @@ -1185,6 +1185,7 @@ ikev2_pld_notify(struct iked *env, struct ikev2_payload *pld, return (-1); } msg->msg_parent->msg_flags |= IKED_MSG_FLAGS_NO_PROPOSAL_CHOSEN; + break; case IKEV2_N_MOBIKE_SUPPORTED: if (!msg->msg_e) { log_debug("%s: N_MOBIKE_SUPPORTED not encrypted", |