diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2020-01-09 18:17:21 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2020-01-09 18:17:21 +0000 |
commit | 7b85912ecc9e9fdd4fd4f455b050d45d9716fba9 (patch) | |
tree | f9c2700c782dc2bc21ac1f200286ddacbeab3a40 /usr.sbin/bind/lib/dns/rdata/generic/sig_24.c | |
parent | b96618144c327b9e62653904e85c38b00b8c3ab1 (diff) |
Use normal int types like int32_t instead of isc_int32_t.
OK millert
Diffstat (limited to 'usr.sbin/bind/lib/dns/rdata/generic/sig_24.c')
-rw-r--r-- | usr.sbin/bind/lib/dns/rdata/generic/sig_24.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bind/lib/dns/rdata/generic/sig_24.c b/usr.sbin/bind/lib/dns/rdata/generic/sig_24.c index f9add4f002c..d283b015a46 100644 --- a/usr.sbin/bind/lib/dns/rdata/generic/sig_24.c +++ b/usr.sbin/bind/lib/dns/rdata/generic/sig_24.c @@ -14,7 +14,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: sig_24.c,v 1.7 2019/12/17 01:46:33 sthen Exp $ */ +/* $Id: sig_24.c,v 1.8 2020/01/09 18:17:17 florian Exp $ */ /* Reviewed: Fri Mar 17 09:05:02 PST 2000 by gson */ @@ -35,7 +35,7 @@ fromtext_sig(ARGS_FROMTEXT) { isc_result_t result; dns_name_t name; isc_buffer_t buffer; - isc_uint32_t time_signed, time_expire; + uint32_t time_signed, time_expire; REQUIRE(type == dns_rdatatype_sig); |