* resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
authorUlrich Drepper <drepper@redhat.com>
Fri, 12 May 2006 04:18:25 +0000 (04:18 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 12 May 2006 04:18:25 +0000 (04:18 +0000)
ChangeLog
resolv/res_debug.c

index 26f303f..3c133da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-05-11  Ulrich Drepper  <drepper@redhat.com>
 
+       * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
+
        * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
 
        * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
index 9b308b1..32ac829 100644 (file)
@@ -896,7 +896,7 @@ loc_ntoa(binary, ascii)
        const u_char *binary;
        char *ascii;
 {
-       static char *error = "?";
+       static char error[] = "?";
        static char tmpbuf[sizeof
 "1000 60 60.000 N 1000 60 60.000 W -12345678.00m 90000000.00m 90000000.00m 90000000.00m"];
        const u_char *cp = binary;