* Remove duplicate call for server time in who_is_online(); IPC does this now
authorMichael Hampton <io_error@uncensored.citadel.org>
Sun, 21 Jul 2002 15:45:07 +0000 (15:45 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Sun, 21 Jul 2002 15:45:07 +0000 (15:45 +0000)
citadel/ChangeLog
citadel/citadel.c
citadel/citadel.h

index e3bf61fa328a0cdee4fec114fe98a38a9491d2d2..beb473286d1cd5f39924e69411b8102ffe4f21ad 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 591.71  2002/07/21 15:45:07  error
+ * Remove duplicate call for server time in who_is_online(); IPC does this now
+
  Revision 591.70  2002/07/21 15:43:57  error
  * citadel_ipc.c: Fix for segfault on empty messages
 
@@ -3824,3 +3827,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
+
index e2ba5614c2841b582834184ffcd4189ada3f93b8..df25e0c9c39c51d0ae8a549e3d8ab80189b94cc6 100644 (file)
@@ -769,10 +769,6 @@ void who_is_online(int longlist)
                skipidle = 1;
        }
 
-       if (!(timenow = CtdlIPCServerTime(tbuf))) {
-               time(&timenow);
-       }
-
        if (!longlist) {
                color(BRIGHT_WHITE);
                pprintf("FLG ###        User Name                 Room                 From host\n");
index bd30e3029c94b11c029db5f98716ad395de4b4ff..335a29346024a8953e09bc796c16711ced87a5f7 100644 (file)
@@ -301,8 +301,6 @@ enum {
 #define LONG_MAX 2147483647L
 #endif
 
-#endif /* CITADEL_H */
-
 
 /*
  * Views
@@ -310,3 +308,5 @@ enum {
 #define        VIEW_BBS                0       /* Traditional Citadel BBS view */
 #define VIEW_MAILBOX           1       /* Mailbox summary */
 #define VIEW_ADDRESSBOOK       2       /* Address book view */
+
+#endif /* CITADEL_H */