* Moved to the new string tokenizer API
[citadel.git] / webcit / floors.c
index a0b4edf1061cd5a6776576671e9a8e430bbf73e6..a9d4ddfadc0c329717bce4167bfb5bb97f10f31d 100644 (file)
@@ -77,7 +77,7 @@ void display_floorconfig(char *prepend_html)
 
        while (serv_gets(buf), strcmp(buf, "000")) {
                floornum = extract_int(buf, 0);
-               extract(floorname, buf, 1);
+               extract_token(floorname, buf, 1, '|', sizeof floorname);
                refcount = extract_int(buf, 2);
 
                wprintf("<TR><TD><TABLE border=0><TR><TD>%d", floornum);