repo: ngircd action: commit revision: path_from: revision_from: 8f5cbe51a79c786be30ebc93466988cf67a825e1: path_to: revision_to:
commit 8f5cbe51a79c786be30ebc93466988cf67a825e1 Author: Alexander BartonDate: Tue Aug 6 21:34:32 2013 +0200 Streamline punctuation of log messages See commit d38d153f for details. diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
--- 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;
}
-----END OF PAGE-----