* Cleaned up the rcs/cvs Id tags and leading comments at the top of some files
[citadel.git] / webcit / userlist.c
index f291247ebdcab26e9e4e29867b34d08339ae9a0b..217c58bb744dd97bc58dc19e372ef75bfc5ff095 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * $Id$
+ *
+ * Display a list of all accounts on a Citadel system.
+ *
+ */
+
 #include <ctype.h>
 #include <stdlib.h>
 #include <unistd.h>
@@ -19,9 +26,6 @@
 #include <signal.h>
 #include "webcit.h"
 
-
-
-
 struct namelist {
        struct namelist *next;
        char name[32];
@@ -66,7 +70,7 @@ void userlist(void)
        wprintf("<CENTER>");
        wprintf("<TABLE border=0 width=100%%>");
        wprintf("<TR><TH>User Name</TH><TH>Number</TH><TH>Access Level</TH>");
-       wprintf("<TH>Last Call</TH><TH>Total Calls</TH><TH>Total Posts</TH></TR>\n");
+       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);