1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-ktcheck.c,v 1.2 2018/12/18 14:16:18 hauke Exp $
Fix for Radmind bug #221, accomodating for 64 bit time_t
--- ktcheck.c.orig 2010-12-13 03:42:49.000000000 +0000
+++ ktcheck.c
@@ -459,7 +459,7 @@ check( SNET *sn, char *type, char *file
perror( "Incorrect number of arguments\n" );
return( 2 );
}
- times.modtime = atoi( targv[ 5 ] );
+ times.modtime = strtotimet( targv[ 5 ], NULL, 10 );
times.actime = time( NULL );
if (( stat( path, &st )) != 0 ) {
@@ -506,7 +506,7 @@ check( SNET *sn, char *type, char *file
needupdate = 1;
}
} else {
- if ( atoi( targv[ 5 ] ) != (int)st.st_mtime ) {
+ if ( strtotimet( targv[ 5 ], NULL, 10 ) != st.st_mtime ) {
needupdate = 1;
}
}
|