Problem with merge: this is called Buf in stable, not LineBuf
authorWilfried Goesgens <dothebart@citadel.org>
Thu, 7 Apr 2011 21:53:21 +0000 (23:53 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Thu, 7 Apr 2011 21:53:21 +0000 (23:53 +0200)
webcit/mainmenu.c

index 5022a0c0318a89cddde7ea0333f13da4ae463e6f..b070030cbf31c17aa7eeec6d40a1f90f4c41dd82 100644 (file)
@@ -114,10 +114,10 @@ void do_generic(void)
                }
        case 1:
                while (!Done) {
-                       if (StrBuf_ServGetln(LineBuf) < 0)
+                       if (StrBuf_ServGetln(Buf) < 0)
                                break;
-                       if ( (StrLength(LineBuf)==3) && 
-                            !strcmp(ChrPtr(LineBuf), "000")) {
+                       if ( (StrLength(Buf)==3) && 
+                            !strcmp(ChrPtr(Buf), "000")) {
                                Done = 1;
                        }
                        StrEscAppend(WCC->WBuf, Buf, NULL, 0, 0);