From: Mark Andrews Date: Fri, 25 Jan 2002 03:12:07 +0000 (+0000) Subject: unsigned char -> char X-Git-Tag: v9.0.1^2~8594 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=0e84be2c52c405bcfb4eb57f094de4f48ad19524;p=thirdparty%2Fbind9.git unsigned char -> char --- diff --git a/bin/named/builtin.c b/bin/named/builtin.c index f989089a664..a84833a5a5f 100644 --- a/bin/named/builtin.c +++ b/bin/named/builtin.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: builtin.c,v 1.1 2001/11/20 01:14:56 gson Exp $ */ +/* $Id: builtin.c,v 1.2 2002/01/25 03:12:07 marka Exp $ */ /* * The built-in "version", "hostname", and "authors" databases. @@ -105,7 +105,7 @@ do_hostname_lookup(dns_sdblookup_t *lookup) { else return (put_txt(lookup, ns_g_server->hostname)); } else { - unsigned char buf[256]; + char buf[256]; isc_result_t result = ns_os_gethostname(buf, sizeof(buf)); if (result != ISC_R_SUCCESS) return (result);