From 635c4b5b89e92a349955e5c95a5821ecaecf664f Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Tue, 14 Nov 2017 16:05:00 +0000 Subject: [PATCH] fix for lint. git-svn-id: file:///svn/unbound/trunk@4406 be551aaa-1e26-0410-a405-d3ace91eadb9 --- services/authzone.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/authzone.c b/services/authzone.c index a51915290..ea24cf3bd 100644 --- a/services/authzone.c +++ b/services/authzone.c @@ -3133,8 +3133,10 @@ xfr_probe_send_probe(struct auth_xfer* xfr, struct module_env* env, return 0; } xfr->task_probe->timeout = timeout; +#ifndef S_SPLINT_S t.tv_sec = timeout/1000; t.tv_usec = (timeout%1000)*1000; +#endif comm_timer_set(xfr->task_probe->timer, &t); return 1;