From: Selva Nair Date: Wed, 2 Jun 2021 03:42:53 +0000 (-0400) Subject: Fix parsing of IV_SSO string X-Git-Tag: v2.6_beta1~490 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28240c4a6e9e8134d6a62822918436dbd62b7fde;p=thirdparty%2Fopenvpn.git Fix parsing of IV_SSO string Expect comma separated keywords Signed-off-by: Selva Nair Acked-by: Arne Schwabe Message-Id: <20210602034253.19984-3-selva.nair@gmail.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg22474.html Signed-off-by: Gert Doering --- diff --git a/src/openvpn/ssl_verify.c b/src/openvpn/ssl_verify.c index 0b41eea2d..512b4f72d 100644 --- a/src/openvpn/ssl_verify.c +++ b/src/openvpn/ssl_verify.c @@ -913,7 +913,7 @@ check_auth_pending_method(const char *peer_info, const char *method) supported = true; break; } - client_method = strtok(NULL, ":"); + client_method = strtok(NULL, ","); } gc_free(&gc);