diff options
| author | Alexander Barton <alex@barton.de> | 2013-08-06 21:34:32 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2013-08-06 21:34:32 +0200 |
| commit | 8f5cbe51a79c786be30ebc93466988cf67a825e1 (patch) | |
| tree | 854246a77f04478352d6bd3cd4aec6dae204638e | |
| parent | bd0de15d314e6eacd0ea77be49473fedc7b2667f (diff) | |
| download | ngircd-8f5cbe51a79c786be30ebc93466988cf67a825e1.tar.gz ngircd-8f5cbe51a79c786be30ebc93466988cf67a825e1.zip | |
Streamline punctuation of log messages
See commit d38d153f for details.
| -rw-r--r-- | src/ngircd/conn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 01253a2a..86aeb652 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -222,7 +222,7 @@ cb_connserver(int sock, UNUSED short what) if (server < 0) { Log(LOG_ERR, "Connection on socket %d to \"%s\" aborted!", sock, My_Connections[idx].host); - Conn_Close(idx, "Connection aborted!", NULL, false); + Conn_Close(idx, "Connection aborted", NULL, false); return; } @@ -1452,7 +1452,7 @@ Handle_Write( CONN_ID Idx ) Log(LOG_ERR, "Write error on connection %d (socket %d): %s!", Idx, My_Connections[Idx].sock, strerror(errno)); - Conn_Close(Idx, "Write error!", NULL, false); + Conn_Close(Idx, "Write error", NULL, false); return false; } |