diff options
author | Joseph Henry <josephjah@gmail.com> | 2015-12-21 07:36:44 -0800 |
---|---|---|
committer | Joseph Henry <josephjah@gmail.com> | 2015-12-21 07:36:44 -0800 |
commit | 6f62d6bb3480b50b71d8db9ecc6814b5b5e74a8b (patch) | |
tree | 1556032d7b9a948772893e4efab245a5f122d555 /netcon/RPC.c | |
parent | d430457f1ece672dcf0a818cf4c5f45e2024ce27 (diff) | |
download | infinitytier-6f62d6bb3480b50b71d8db9ecc6814b5b5e74a8b.tar.gz infinitytier-6f62d6bb3480b50b71d8db9ecc6814b5b5e74a8b.zip |
Removed straggler debug prints
Diffstat (limited to 'netcon/RPC.c')
-rw-r--r-- | netcon/RPC.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/netcon/RPC.c b/netcon/RPC.c index 5e7d3397..2b396183 100644 --- a/netcon/RPC.c +++ b/netcon/RPC.c @@ -55,10 +55,9 @@ int get_new_fd(int sock) int newfd; ssize_t size = sock_fd_read(sock, buf, sizeof(buf), &newfd); if(size > 0){ - fprintf(stderr, "get_new_fd(): RX: fd = (%d) over (%d)\n", newfd, sock); return newfd; } - fprintf(stderr, "get_new_fd(): ERROR: unable to read fd over (%d)\n", sock); + fprintf(stderr, "get_new_fd(): Error, unable to read fd over (%d)\n", sock); return -1; } |