summaryrefslogtreecommitdiff
path: root/logintest.c
diff options
context:
space:
mode:
authorandre <andre>2000-06-13 00:29:34 +0000
committerandre <andre>2000-06-13 00:29:34 +0000
commit55661d99b83cf8480993cd39e94d58d473c37c45 (patch)
treee162d5bb70cb925fc308444eafc32a78e912adf1 /logintest.c
parent4225438a34504b4ce9d69aad68fc183452370984 (diff)
Backed out previous changes - 'tolerance' setting may just hide a bug in
the lastlog-from-utmp code for HPUX
Diffstat (limited to 'logintest.c')
-rw-r--r--logintest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/logintest.c b/logintest.c
index 4fc27b25b..d7c62ab87 100644
--- a/logintest.c
+++ b/logintest.c
@@ -48,7 +48,7 @@
48 48
49#include "loginrec.h" 49#include "loginrec.h"
50 50
51RCSID("$Id: logintest.c,v 1.3 2000/06/12 23:40:52 andre Exp $"); 51RCSID("$Id: logintest.c,v 1.4 2000/06/13 00:29:34 andre Exp $");
52 52
53 53
54int nologtest = 0; 54int nologtest = 0;
@@ -175,12 +175,12 @@ int testAPI()
175 printf("The lastlog times before and after logging in are the " 175 printf("The lastlog times before and after logging in are the "
176 "same.\nThis indicates that lastlog is ** NOT WORKING " 176 "same.\nThis indicates that lastlog is ** NOT WORKING "
177 "CORRECTLY **\n"); 177 "CORRECTLY **\n");
178 else if ( abs(t2-t0) >2 ) /* allow a small tolerance for slow systems */ 178 else if (t0 != t2)
179 printf("** The login time and the lastlog time differ.\n" 179 printf("** The login time and the lastlog time differ.\n"
180 "** This indicates that lastlog is either recording the " 180 "** This indicates that lastlog is either recording the "
181 "wrong time,\n** or retrieving the wrong entry.\n"); 181 "wrong time,\n** or retrieving the wrong entry.\n");
182 else 182 else
183 printf("lastlog seems to agree with the login time. This is a good thing.\n"); 183 printf("lastlog agrees with the login time. This is a good thing.\n");
184 184
185#endif 185#endif
186 186