Updated error reporting for sock_fd_read()

This commit is contained in:
Joseph Henry 2016-01-12 14:25:30 -08:00
commit bdabe40c65
2 changed files with 3 additions and 7 deletions

View file

@ -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;