---
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 7f889b1..5248f44 100644
--- a/src/openvpn/socket.c
+++ b/src/openvpn/socket.c
@@ -898,11 +898,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__);
}
--
2.3.2 (Apple Git-55)