diff options
-rw-r--r-- | kike.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3082,7 +3082,7 @@ irc_try_read (struct client *c) if (errno == EINTR) continue; - print_debug ("%s: %s: %s", __func__, "recv", strerror (errno)); + print_debug ("%s: %s: %s", __func__, "read", strerror (errno)); client_kill (c, strerror (errno)); return false; } @@ -3149,7 +3149,7 @@ irc_try_write (struct client *c) if (errno == EINTR) continue; - print_debug ("%s: %s: %s", __func__, "send", strerror (errno)); + print_debug ("%s: %s: %s", __func__, "write", strerror (errno)); client_kill (c, strerror (errno)); return false; } |