diff --git a/CHANGES b/CHANGES index 91d7b0fac7..a642b685d8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ + 275. [bug] The definition of lwres_gai_strerror() was missing the + lwres_ prefix. + 274. [bug] TSIG AXFR verify failed when talking to a BIND 8 server. 273. [func] The default for the 'transfer-format' option is diff --git a/lib/lwres/gai_strerror.c b/lib/lwres/gai_strerror.c index 140e6c303e..8ee2f0ba9c 100644 --- a/lib/lwres/gai_strerror.c +++ b/lib/lwres/gai_strerror.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: gai_strerror.c,v 1.9 2000/06/09 20:56:25 gson Exp $ */ +/* $Id: gai_strerror.c,v 1.10 2000/06/23 01:50:48 gson Exp $ */ #include @@ -35,7 +35,7 @@ static const char *gai_messages[] = { }; char * -gai_strerror(int ecode) { +lwres_gai_strerror(int ecode) { union { const char *const_ptr; char *deconst_ptr;