summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/openvpn/socket.c4
1 files 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__);
}