From: Arne Schwabe Date: Wed, 12 Feb 2025 12:36:52 +0000 (+0100) Subject: Fix typo in positive_atoi X-Git-Tag: v2.7_alpha1~89 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f3268ee5c7a1beeea01aeed579c7ee11ceca9b03;p=thirdparty%2Fopenvpn.git Fix typo in positive_atoi This is a code path that only affects Android Change-Id: I3f05318fb6f8d9e32d07532a4f0c6ccf8fb757ce Signed-off-by: Arne Schwabe Acked-by: Gert Doering Message-Id: <20250212123652.18183-1-gert@greenie.muc.de> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg30832.html Signed-off-by: Gert Doering --- diff --git a/src/openvpn/options.c b/src/openvpn/options.c index 218d8a660..3ae44dbe4 100644 --- a/src/openvpn/options.c +++ b/src/openvpn/options.c @@ -8316,7 +8316,7 @@ add_option(struct options *options, #if defined(TARGET_ANDROID) else if (streq(p[1], "PROXY_HTTP") && p[3] && !p[4]) { - o->http_proxy_port = positiove_atoi(p[3], msglevel); + o->http_proxy_port = positive_atoi(p[3], msglevel); o->http_proxy = p[2]; } #endif