remove some debugging statements

This commit is contained in:
fishwaldo 2003-03-04 13:03:55 +00:00
parent 9eab176837
commit ea306ea3ff
2 changed files with 7 additions and 7 deletions

11
TODO
View file

@ -1,14 +1,15 @@
$Id: TODO,v 1.15 2003/01/29 09:28:48 fishwaldo Exp $
$Id: TODO,v 1.16 2003/03/04 13:03:55 fishwaldo Exp $
put back "expire_channels" stuff
/stats g should report when a G line will expire
SSL client support modes and channel related stuff
/accept by hostmask
rip out servlink and make ssl/ziplinks built in...
*/stats g should report when a G line will expire
*SSL client support modes and channel related stuff
*/accept by hostmask
*rip out servlink and make ssl/ziplinks built in...
*Umode +a (Services Root) and +N (Network Admin)
*add IsMyAdmin to replace IsAdmin (currently server admins have admin axs to all servers)
*Channel mode +M (un-registered users can't talk)
*there is a bug in usermode processing.. reported by static
POST 1.0

View file

@ -20,7 +20,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* $Id: linebuf.c,v 1.7 2002/11/04 08:50:46 fishwaldo Exp $
* $Id: linebuf.c,v 1.8 2003/03/04 13:03:55 fishwaldo Exp $
*/
#include "stdinc.h"
@ -673,7 +673,6 @@ linebuf_flush(int fd, buf_head_t *bufhead)
#endif
retval = send(fd, bufline->buf + bufhead->writeofs, bufline->len
- bufhead->writeofs, 0);
printf("send retval %d\n", retval);
/* Deal with return code */
if (retval < 0)
return retval;