From: Arne Schwabe Date: Mon, 17 Apr 2023 13:40:46 +0000 (+0200) Subject: Fix compile error on TARGET_ANDROID X-Git-Tag: v2.7_alpha1~476 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d38ed4817f4c1fe1676409c4e5138aaa4a69dfc;p=thirdparty%2Fopenvpn.git Fix compile error on TARGET_ANDROID Commit 3132bead49 accidentially was submitted with a missing semicolon at the end of the line. Whoops. Signed-off-by: Arne Schwabe Acked-by: Gert Doering Message-Id: <20230417134046.81761-1-arne@rfc2549.org> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg26593.html Signed-off-by: Gert Doering --- diff --git a/src/openvpn/socket.c b/src/openvpn/socket.c index ab8cc754d..fc643c1c5 100644 --- a/src/openvpn/socket.c +++ b/src/openvpn/socket.c @@ -1165,7 +1165,7 @@ protect_fd_nonlocal(int fd, const struct sockaddr *addr) { if (!management) { - msg(M_FATAL, "Required management interface not available.") + msg(M_FATAL, "Required management interface not available."); } /* pass socket FD to management interface to pass on to VPNService API