* Moved to the new string tokenizer API
[citadel.git] / webcit / userlist.c
index ad828db6de242f8ad5e15a7a3a5c1ad8245cde1b..69a4c2e88b940dc5cc604773b8ecad1f781622d3 100644 (file)
@@ -77,7 +77,7 @@ void userlist(void)
        wprintf("<TH>Last Login</TH><TH>Total Logins</TH><TH>Total Posts</TH></TR>\n");
 
        while (serv_gets(buf), strcmp(buf, "000")) {
-               extract(fl, buf, 0);
+               extract_token(fl, buf, 0, '|', sizeof fl);
                has_bio = 0;
                for (bptr = bio; bptr != NULL; bptr = bptr->next) {
                        if (!strcasecmp(fl, bptr->name))