aboutsummaryrefslogtreecommitdiff
path: root/utils/rrdtool1/patches/002-no_timezone.patch
blob: 67bc9b15b4d64e2e24179535dfb243b5c130a7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- a/src/rrd_tool.c
+++ b/src/rrd_tool.c
@@ -225,11 +225,8 @@ int main(int argc, char *argv[])
 	  struct rusage  myusage;
 	  struct timeval starttime;
 	  struct timeval currenttime;
-	  struct timezone tz;
 
-	    tz.tz_minuteswest =0;
-	    tz.tz_dsttime=0;
-	    gettimeofday(&starttime,&tz);
+	    gettimeofday(&starttime,NULL);
 #endif
 
 	    while (fgets(aLine, sizeof(aLine)-1, stdin)){
@@ -252,7 +249,7 @@ int main(int argc, char *argv[])
 
 #if HAVE_GETRUSAGE
 		getrusage(RUSAGE_SELF,&myusage);
-		gettimeofday(&currenttime,&tz);
+		gettimeofday(&currenttime,NULL);
 		printf("OK u:%1.2f s:%1.2f r:%1.2f\n",
 		       (double)myusage.ru_utime.tv_sec+
 		       (double)myusage.ru_utime.tv_usec/1000000.0,