From acd487d0f3597e67f451aa23b73ad03dc19842b0 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Tue, 15 Sep 2015 11:23:36 +0200 Subject: 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 --- src/openvpn/socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openvpn/socket.c b/src/openvpn/socket.c index 20edf41..57d5962 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__); } -- cgit