diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-10-12 04:33:39 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-10-12 04:33:39 +0200 |
commit | 559232ccb527ceeff302ced0d2bb25bc4e79996c (patch) | |
tree | b7881763ac1c24f7233904775efb58981541aae4 /kike.c | |
parent | 6837fdb7c4eac3e36b297e8dd1c3943bf6767884 (diff) | |
download | xK-559232ccb527ceeff302ced0d2bb25bc4e79996c.tar.gz xK-559232ccb527ceeff302ced0d2bb25bc4e79996c.tar.xz xK-559232ccb527ceeff302ced0d2bb25bc4e79996c.zip |
kike: fix up debug messages
Diffstat (limited to 'kike.c')
-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; } |