diff --git a/TODO b/TODO index adfa1d7..5ba4c2e 100644 --- a/TODO +++ b/TODO @@ -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 diff --git a/src/linebuf.c b/src/linebuf.c index e4ac7cb..6149e07 100644 --- a/src/linebuf.c +++ b/src/linebuf.c @@ -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;