From: Remi Gacogne Date: Mon, 27 Jun 2016 16:14:37 +0000 (+0200) Subject: Fix struct pdns_timeval init in dnsgram X-Git-Tag: auth-4.0.0-rc1~11^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F4055%2Fhead;p=thirdparty%2Fpdns.git Fix struct pdns_timeval init in dnsgram --- diff --git a/pdns/dnsgram.cc b/pdns/dnsgram.cc index 9b8ae75475..4831056e0c 100644 --- a/pdns/dnsgram.cc +++ b/pdns/dnsgram.cc @@ -120,7 +120,7 @@ try /* we measure every 60 seconds, each interval with 10% less answers than questions is interesting */ /* report chunked */ - struct pdns_timeval lastreport={0, 0}; + struct pdns_timeval lastreport; typedef set > queries_t; queries_t questions, answers;