]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix: nums type in dst_keys
authorMatthijs Mekking <matthijs@isc.org>
Wed, 11 Sep 2019 11:46:02 +0000 (13:46 +0200)
committerMatthijs Mekking <matthijs@isc.org>
Wed, 6 Nov 2019 21:31:44 +0000 (22:31 +0100)
This was isc_stdtime_t but should be uint32_t.

lib/dns/dst_internal.h

index 3657733d49d23b82595d11ee1fc63449c3225e41..86709135ac4454cc36d6a56c06df3ae15d6ba935 100644 (file)
@@ -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 */