From: Matthijs Mekking Date: Wed, 11 Sep 2019 11:46:02 +0000 (+0200) Subject: Fix: nums type in dst_keys X-Git-Tag: v9.15.6~26^2~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68e8741c989999c33812ec15fb50b9f01a9c5784;p=thirdparty%2Fbind9.git Fix: nums type in dst_keys This was isc_stdtime_t but should be uint32_t. --- diff --git a/lib/dns/dst_internal.h b/lib/dns/dst_internal.h index 3657733d49d..86709135ac4 100644 --- a/lib/dns/dst_internal.h +++ b/lib/dns/dst_internal.h @@ -108,7 +108,7 @@ struct dst_key { isc_stdtime_t times[DST_MAX_TIMES + 1]; /*%< timing metadata */ bool timeset[DST_MAX_TIMES + 1]; /*%< data set? */ - isc_stdtime_t nums[DST_MAX_NUMERIC + 1]; /*%< numeric metadata */ + uint32_t nums[DST_MAX_NUMERIC + 1]; /*%< numeric metadata */ bool numset[DST_MAX_NUMERIC + 1]; /*%< data set? */ bool inactive; /*%< private key not present as it is inactive */