diff options
author | Joseph Henry <josephjah@gmail.com> | 2016-01-12 14:25:30 -0800 |
---|---|---|
committer | Joseph Henry <josephjah@gmail.com> | 2016-01-12 14:25:30 -0800 |
commit | bdabe40c65fd2205140902c0a62dfea2ab92fced (patch) | |
tree | 82bff1a733a11686682d1aed2ba9ce6e588bf2d6 /netcon/Intercept.c | |
parent | 7991a7c50a11e90ed74de0c94a5be9add7cd38d6 (diff) | |
download | infinitytier-bdabe40c65fd2205140902c0a62dfea2ab92fced.tar.gz infinitytier-bdabe40c65fd2205140902c0a62dfea2ab92fced.zip |
Updated error reporting for sock_fd_read()
Diffstat (limited to 'netcon/Intercept.c')
-rw-r--r-- | netcon/Intercept.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netcon/Intercept.c b/netcon/Intercept.c index c6868b8e..40c90957 100644 --- a/netcon/Intercept.c +++ b/netcon/Intercept.c @@ -238,7 +238,7 @@ int connect(CONNECT_SIG) struct sockaddr_storage storage; memcpy(&storage, __addr, __len); struct sockaddr_un *s_un = (struct sockaddr_un*)&storage; - fprintf(stderr, "connect(): address = %s\n", s_un->sun_path); + dwr(MSG_DEBUG, "connect(): address = %s\n", s_un->sun_path); } int port = connaddr->sin_port; |