* Disabled CHAT cmd until the underlying I/O layer is fixed
authorArt Cancro <ajc@citadel.org>
Sun, 28 Mar 2010 17:25:08 +0000 (17:25 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 28 Mar 2010 17:25:08 +0000 (17:25 +0000)
citadel/modules/chat/serv_chat.c

index c198d705153ec3beca30d58a1fa1431c2798084c..5fbd1db2d2135447755da37980a00b26137c1fe9 100644 (file)
@@ -345,6 +345,11 @@ void do_chat_listing(int allflag)
 
 void cmd_chat(char *argbuf)
 {
+       /* FIXME chat has been broken by the underlying buffered I/O layer */
+       cprintf("%d Chat is currently disabled at this site.\n", ERROR);
+       return;
+
+#if 0
        char cmdbuf[SIZ];
        char *un;
        char *strptr1;
@@ -517,6 +522,7 @@ void cmd_chat(char *argbuf)
                        MyLastMsg = ThisLastMsg;
                }
        }
+#endif
 }