small fix
authorpk910 <philipp@zoelle1.de>
Tue, 15 Jul 2014 22:20:45 +0000 (00:20 +0200)
committerpk910 <philipp@zoelle1.de>
Tue, 15 Jul 2014 22:20:45 +0000 (00:20 +0200)
src/ircd_client.c

index 3ae6e50e0697c9475ef28fbd1659baba67bcfb23..9ef6451131669355d1da8a5eb943fb1df3c19870 100644 (file)
@@ -38,7 +38,7 @@ static void client_printf(struct Connection *conn, const char *text, ...) {
        if (pos < 0 || pos > (CLIENT_MAXLEN - 2)) pos = CLIENT_MAXLEN - 2;
        sendBuf[pos] = '\n';
     sendBuf[pos+1] = '\0';
-       socket_send(conn, sendBuf, pos);
+       socket_send(conn, sendBuf, pos+1);
 }
 
 void client_connected(struct Connection *conn) {