removed debug output - sic - simple irc client
HTML git clone git://git.suckless.org/sic
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 9b093ac5c6e68935d7b941678159ed1e3218daa8
DIR parent 264f8e9422850a8e7a5bda01d1ca04e17f553164
HTML Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 15:04:57 +0100
removed debug output
Diffstat:
M sic.c | 1 -
1 file changed, 0 insertions(+), 1 deletion(-)
---
DIR diff --git a/sic.c b/sic.c
@@ -102,7 +102,6 @@ parsesrv(char *msg) {
txt = NULL;
if(!msg || !(*msg))
return;
- pout("debug", msg);
if(msg[0] != ':')
return; /* don't handle prefix-less server commands */
if(!(p = strchr(msg, ' ')))