From 8115e481face340caef134e25993e0235b5996d0 Mon Sep 17 00:00:00 2001 From: Richard Nyberg Date: Sun, 31 Jul 2005 17:42:07 +0000 Subject: [PATCH] Wrong logmask was used. --- btpd/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btpd/net.c b/btpd/net.c index 03e50a2..a3f611e 100644 --- a/btpd/net.c +++ b/btpd/net.c @@ -44,7 +44,7 @@ net_write_cb(int sd, short type, void *arg) { struct peer *p = (struct peer *)arg; if (type == EV_TIMEOUT) { - btpd_log(BTPD_L_ERROR, "Write attempt timed out.\n"); + btpd_log(BTPD_L_CONN, "Write attempt timed out.\n"); peer_kill(p); return; }