Fix the artv export bug that crept in while I was fixing artv import.
authorDave West <davew@uncensored.citadel.org>
Sun, 30 Mar 2008 02:13:56 +0000 (02:13 +0000)
committerDave West <davew@uncensored.citadel.org>
Sun, 30 Mar 2008 02:13:56 +0000 (02:13 +0000)
citadel/modules/vandelay/serv_vandelay.c

index f76bf965b4ef7e4d692e05c6db7c341da508df81..8a0008f010a5d5d54ee626ad1a02dd950e5a8506 100644 (file)
@@ -230,7 +230,7 @@ void artv_export_floors(void) {
         int i;
 
         for (i=0; i < MAXFLOORS; ++i) {
-               client_write("floor\n", 5);
+               client_write("floor\n", 6);
                cprintf("%d\n", i);
                 getfloor(&qfbuf, i);
                buf = &qfbuf;
@@ -253,7 +253,7 @@ void artv_dump_floors(void) {
         int i;
 
         for (i=0; i < MAXFLOORS; ++i) {
-               client_write("floor\n", 5);
+               client_write("floor\n", 6);
                cprintf("%d\n", i);
                 getfloor(&qfbuf, i);
                buf = &qfbuf;