]> code.citadel.org Git - citadel.git/commitdiff
* commands.c: use bright colors by default in color mode
authorArt Cancro <ajc@citadel.org>
Sun, 14 Mar 1999 02:34:07 +0000 (02:34 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 14 Mar 1999 02:34:07 +0000 (02:34 +0000)
        * citserver.c: initialize wholist fields with (not logged in) etc.

citadel/ChangeLog
citadel/citserver.c

index 810a456d433c83eb7ffa111d21ab31bf07413f38..e917afb64d4287e7e5181ea5b0db97606c83f89f 100644 (file)
@@ -1,3 +1,7 @@
+Sat Mar 13 21:33:19 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * commands.c: use bright colors by default in color mode
+       * citserver.c: initialize wholist fields with (not logged in) etc.
+
 1999-03-08 Nathan Bryant <bryant@cs.usm.maine.edu>
        * sysdep.c: call DLoader_Init() with an absolute path so that gdb can
          find module symbols
index 99aa31e1a969c9600fdda5feeee222d7e9962c49..b27ec14d0ba33c211ba0a5ddcb78ff5d19dc5f16 100644 (file)
@@ -690,10 +690,10 @@ void *context_loop(struct CitContext *con)
        time(&CC->lastidle);
        strcpy(CC->lastcmdname, "    ");
        strcpy(CC->cs_clientname, "(unknown)");
-       strcpy(CC->curr_user,"");
+       strcpy(CC->curr_user,"(not logged in)");
        strcpy(CC->net_node,"");
        snprintf(CC->temp, sizeof CC->temp, "/tmp/CitServer.%d.%d", getpid(), CC->cs_pid);
-       strcpy(CC->cs_room, "");
+       strcpy(CC->cs_room, "(no room)");
        strncpy(CC->cs_host, config.c_fqdn, sizeof CC->cs_host);
        CC->cs_host[sizeof CC->cs_host - 1] = 0;
        locate_host(CC->cs_host);