diff options
Diffstat (limited to 'common/sys')
-rw-r--r-- | common/sys/net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/sys/net.c b/common/sys/net.c index 2f4d8ae7..232d5bb1 100644 --- a/common/sys/net.c +++ b/common/sys/net.c @@ -250,7 +250,7 @@ int send_remote_fd(int tunnel, int fd) } while (rv == -1 && errno == EINTR); if (rv == -1) { - // perror("sendmsg"); + perror("sendmsg"); return rv; } @@ -288,7 +288,7 @@ int recv_remote_fd(int tunnel, const char *tunnel_path) } while (rv == -1 && errno == EINTR); if (rv == -1) { - // perror("recvmsg"); + perror("recvmsg"); return -1; } |