summaryrefslogtreecommitdiffstats
path: root/src/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.c')
-rw-r--r--src/client.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client.c b/src/client.c
index a9c986a..bbdac84 100644
--- a/src/client.c
+++ b/src/client.c
@@ -113,7 +113,8 @@ int client_write(struct mux_client *client, void *buffer, uint32_t len)
113 sret = send(client->fd, buffer, len, 0); 113 sret = send(client->fd, buffer, len, 0);
114 if (sret < 0) { 114 if (sret < 0) {
115 if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) { 115 if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
116 usbmuxd_log(LL_ERROR, "ERROR: client_write: fd %d not ready for writing", client->fd); 116 usbmuxd_log(LL_DEBUG, "client_write: fd %d not ready for writing", client->fd);
117 sret = 0;
117 } else { 118 } else {
118 usbmuxd_log(LL_ERROR, "ERROR: client_write: sending to fd %d failed: %s", client->fd, strerror(errno)); 119 usbmuxd_log(LL_ERROR, "ERROR: client_write: sending to fd %d failed: %s", client->fd, strerror(errno));
119 } 120 }