From d2524f38d22998efb4196410643280b14f8b6feb Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Thu, 26 Aug 1999 21:07:56 +0000 Subject: [PATCH] dns_name_downcase() API change --- lib/dns/tsig.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/dns/tsig.c b/lib/dns/tsig.c index 957a83871a..bf6d33c042 100644 --- a/lib/dns/tsig.c +++ b/lib/dns/tsig.c @@ -16,7 +16,7 @@ */ /* - * $Id: tsig.c,v 1.3 1999/08/26 20:41:53 bwelling Exp $ + * $Id: tsig.c,v 1.4 1999/08/26 21:07:56 halley Exp $ * Principal Author: Brian Wellington */ @@ -93,13 +93,13 @@ dns_tsig_key_create(dns_name_t *name, dns_name_t *algorithm, ret = dns_name_dup(name, mctx, &tkey->name); if (ret != ISC_R_SUCCESS) goto cleanup_key; - dns_name_downcase(&tkey->name); + dns_name_downcase(&tkey->name, &tkey->name, NULL); dns_name_init(&tkey->algorithm, NULL); ret = dns_name_dup(algorithm, mctx, &tkey->algorithm); if (ret != ISC_R_SUCCESS) goto cleanup_name; - dns_name_downcase(&tkey->algorithm); + dns_name_downcase(&tkey->algorithm, &tkey->algorithm, NULL); isc_buffer_init(&nameb, namestr, sizeof(namestr), ISC_BUFFERTYPE_TEXT); ret = dns_name_totext(name, ISC_FALSE, &nameb);