]> code.citadel.org Git - citadel.git/blobdiff - citadel/whobbs.c
* Variable names, comments, documentation, etc... removed the acronym 'BBS'
[citadel.git] / citadel / whobbs.c
index 2dd59ef793f446ea4e2a0990b8795cba0e347bc8..82d9f0d26716c33ecb0b001972172cb1965da003 100644 (file)
@@ -73,12 +73,12 @@ int main(int argc, char **argv)
                fprintf(stderr, "Server not available: %s\n", strerror(errno));
                logoff(errno);
        }
-       CtdlIPC_getline(ipc, buf);
+       CtdlIPC_chat_recv(ipc, buf);
        if ((buf[0]!='2')&&(strncmp(buf,"551",3))) {
                fprintf(stderr,"%s: %s\n",argv[0],&buf[4]);
                logoff(atoi(buf));
                }
-       strcpy(nodetitle, "this BBS");
+       strcpy(nodetitle, "this Citadel site");
        r = CtdlIPCServerInfo(ipc, buf);
        if (r / 100 == 1) {
                my_pid = ipc->ServInfo.pid;
@@ -128,17 +128,17 @@ int main(int argc, char **argv)
 
 
        while (strlen(listing) > 0) {
-               extract_token(buf, listing, 0, '\n');
+               extract_token(buf, listing, 0, '\n', sizeof buf);
                remove_token(listing, 0, '\n');
 
                /* Escape some stuff if we're using www mode */
                if (www) escapize(buf, sizeof buf);
 
                s_pid = extract_int(buf,0);
-               extract(s_user,buf,1);
-               extract(s_room,buf,2);
-               extract(s_host,buf,3);
-               extract(s_client,buf,4);
+               extract_token(s_user, buf, 1, '|', sizeof s_user);
+               extract_token(s_room, buf, 2, '|', sizeof s_room);
+               extract_token(s_host, buf, 3, '|', sizeof s_host);
+               extract_token(s_client, buf, 4, '|', sizeof s_client);
                if (s_pid != my_pid) {
 
                        if (www) printf("<TR><TD>");