summaryrefslogtreecommitdiff
path: root/lib/hostip.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/hostip.c')
-rw-r--r--lib/hostip.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/hostip.c b/lib/hostip.c
index 619ec84b5..c8e3bdc2f 100644
--- a/lib/hostip.c
+++ b/lib/hostip.c
@@ -688,11 +688,14 @@ clean_up:
the time we spent until now! */
if(prev_alarm) {
/* there was an alarm() set before us, now put it back */
- unsigned long elapsed_secs = (unsigned long) (Curl_tvdiff(Curl_tvnow(),
- conn->created) / 1000);
+ unsigned long elapsed_secs;
+ unsigned long alarm_set;
+ data->state.now = curlx_tvnow();
+ elapsed_secs =
+ (unsigned long) (curlx_tvdiff(data->state.now, conn->created) / 1000);
/* the alarm period is counted in even number of seconds */
- unsigned long alarm_set = prev_alarm - elapsed_secs;
+ alarm_set = prev_alarm - elapsed_secs;
if(!alarm_set ||
((alarm_set >= 0x80000000) && (prev_alarm < 0x80000000)) ) {