aboutsummaryrefslogtreecommitdiff
path: root/net/httping/patches/003-fix_response_time.patch
blob: e07970e8239ccc685fcf2627d65c7330029745ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- a/utils.c
+++ b/utils.c
@@ -18,12 +18,11 @@
 double get_ts(void)
 {
 	struct timeval ts;
-       	struct timezone tz;
 
-	if (gettimeofday(&ts, &tz) == -1)
+	if (gettimeofday(&ts, NULL) == -1)
 		error_exit(gettext("gettimeofday failed"));
 
-	return (double)ts.tv_sec + ((double)ts.tv_usec)/1000000.0 + (double)(tz.tz_minuteswest * 60);
+	return (double)ts.tv_sec + ((double)ts.tv_usec)/1000000.0;
 }
 
 void split_string(const char *in, const char *split, char ***list, int *list_n)