comparison main.c @ 427:341ac6f99439

Remove debugging message.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 24 May 2012 11:39:02 +0300
parents c2e4d7b4e0ae
children 2ac24f1e241b
comparison
equal deleted inserted replaced
426:c2e4d7b4e0ae 427:341ac6f99439
1221 } 1221 }
1222 1222
1223 // Check if there is a handler function 1223 // Check if there is a handler function
1224 if (cmd->handler) 1224 if (cmd->handler)
1225 { 1225 {
1226 printMsgQ(currWin, "%s[%p]->handler('%s')\n", cmd->cmd, cmd->handler, nbuf);
1227 // Internal commands have a handler 1226 // Internal commands have a handler
1228 return cmd->handler(conn, nbuf); 1227 return cmd->handler(conn, nbuf);
1229 } 1228 }
1230 else 1229 else
1231 { 1230 {