Skip to content

Commit

Permalink
Fix typo in positive_atoi
Browse files Browse the repository at this point in the history
This is a code path that only affects Android

Change-Id: I3f05318fb6f8d9e32d07532a4f0c6ccf8fb757ce
Signed-off-by: Arne Schwabe <[email protected]>
Acked-by: Gert Doering <[email protected]>
Message-Id: <[email protected]>
URL: https://www.mail-archive.com/[email protected]/msg30832.html
Signed-off-by: Gert Doering <[email protected]>
  • Loading branch information
schwabe authored and cron2 committed Feb 12, 2025
1 parent 817577d commit f3268ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openvpn/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f3268ee

Please sign in to comment.