]> mj.ucw.cz Git - nwho.git/commitdiff
Oops.
authorMartin Mares <mj@ucw.cz>
Fri, 4 Oct 2002 12:22:58 +0000 (12:22 +0000)
committerMartin Mares <mj@ucw.cz>
Fri, 4 Oct 2002 12:22:58 +0000 (12:22 +0000)
nwho.c

diff --git a/nwho.c b/nwho.c
index 3adb1ec3b6dee1deed0e3026dbfc07c4effd2526..d7e1f196f5dbe5273d168d5e2586cf2501796f3f 100644 (file)
--- a/nwho.c
+++ b/nwho.c
@@ -53,7 +53,7 @@ show_uptime(char *name, struct rywho_pkt *p)
 {
   int i;
 
-  if (p->server_time - now >= DEFAULT_DOWN_TIME)
+  if (now - ntohl(p->server_time) >= DEFAULT_DOWN_TIME)
     {
       printf("%-16s down\n", name);
       return;
@@ -76,7 +76,7 @@ show_users(char *name, struct rywho_pkt *p)
   int m = ntohl(p->num_users);
   struct userinfo *i;
 
-  if (p->server_time - now >= DEFAULT_DOWN_TIME)
+  if (now - ntohl(p->server_time) >= DEFAULT_DOWN_TIME)
     return;
   for(u=0; u<m; u++)
     {