From: Arne Schwabe Date: Tue, 15 Sep 2015 09:23:36 +0000 (+0200) Subject: Fix loglevel of protect socket message X-Git-Tag: v2.4_alpha1~254 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=acd487d0f3597e67f451aa23b73ad03dc19842b0;p=thirdparty%2Fopenvpn.git Fix loglevel of protect socket message Acked-by: Gert Doering Message-Id: <1442309019-7586-6-git-send-email-arne@rfc2549.org> URL: http://article.gmane.org/gmane.network.openvpn.devel/10112 Signed-off-by: Gert Doering --- diff --git a/src/openvpn/socket.c b/src/openvpn/socket.c index 20edf41a7..57d5962e4 100644 --- a/src/openvpn/socket.c +++ b/src/openvpn/socket.c @@ -881,11 +881,11 @@ static void protect_fd_nonlocal (int fd, const struct sockaddr* addr) * as "protected socket" (exempt from being routed into tunnel) */ if (addr_local (addr)) { - msg(M_DEBUG, "Address is local, not protecting socket fd %d", fd); + msg(D_SOCKET_DEBUG, "Address is local, not protecting socket fd %d", fd); return; } - msg(M_DEBUG, "Protecting socket fd %d", fd); + msg(D_SOCKET_DEBUG, "Protecting socket fd %d", fd); management->connection.fdtosend = fd; management_android_control (management, "PROTECTFD", __func__); }