diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2020-09-14 08:40:45 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2020-09-14 08:40:45 +0000 |
commit | 34cca05c4ff9397afd4d16562d8d391973804ffb (patch) | |
tree | 9b956a296045b1a69f0df50b42f72c7ac5ef6e33 /usr.bin/dig/lib/dns/rdata/generic/x25_19.c | |
parent | 91273258f09702d56f03712ff5f914eecc3b3cf8 (diff) |
Mechanically replace isc_boolean_t with int.
OK deraadt
Diffstat (limited to 'usr.bin/dig/lib/dns/rdata/generic/x25_19.c')
-rw-r--r-- | usr.bin/dig/lib/dns/rdata/generic/x25_19.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/dig/lib/dns/rdata/generic/x25_19.c b/usr.bin/dig/lib/dns/rdata/generic/x25_19.c index 2da9bf8ecaa..54f8bb8aae7 100644 --- a/usr.bin/dig/lib/dns/rdata/generic/x25_19.c +++ b/usr.bin/dig/lib/dns/rdata/generic/x25_19.c @@ -14,7 +14,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: x25_19.c,v 1.11 2020/02/26 18:47:25 florian Exp $ */ +/* $Id: x25_19.c,v 1.12 2020/09/14 08:40:43 florian Exp $ */ /* Reviewed: Thu Mar 16 16:15:57 PST 2000 by bwelling */ @@ -33,7 +33,7 @@ totext_x25(ARGS_TOTEXT) { REQUIRE(rdata->length != 0); dns_rdata_toregion(rdata, ®ion); - return (txt_totext(®ion, ISC_TRUE, target)); + return (txt_totext(®ion, 1, target)); } static inline isc_result_t |