diff options
author | Peter Wemm <peter@FreeBSD.org> | 1999-11-30 02:43:11 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1999-11-30 02:43:11 +0000 |
commit | 6b6ac9438f352903fe405daefaf6a3c9a2b63093 (patch) | |
tree | 7828b08c74ef918938b1b853c98f0cb41edac52c /contrib/bind/lib/inet/inet_ntoa.c | |
parent | 15f7f569921160e3818633b964623b12cd9179d7 (diff) |
Notes
Diffstat (limited to 'contrib/bind/lib/inet/inet_ntoa.c')
-rw-r--r-- | contrib/bind/lib/inet/inet_ntoa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/bind/lib/inet/inet_ntoa.c b/contrib/bind/lib/inet/inet_ntoa.c index 6d1ec297ad522..aaedcb642c714 100644 --- a/contrib/bind/lib/inet/inet_ntoa.c +++ b/contrib/bind/lib/inet/inet_ntoa.c @@ -32,8 +32,8 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)inet_ntoa.c 8.1 (Berkeley) 6/4/93"; -static char rcsid[] = "$Id: inet_ntoa.c,v 1.5 1997/09/26 17:56:01 halley Exp $"; +static const char sccsid[] = "@(#)inet_ntoa.c 8.1 (Berkeley) 6/4/93"; +static const char rcsid[] = "$Id: inet_ntoa.c,v 1.7 1999/05/14 18:16:55 vixie Exp $"; #endif /* LIBC_SCCS and not lint */ #include "port_before.h" @@ -52,7 +52,7 @@ static char rcsid[] = "$Id: inet_ntoa.c,v 1.5 1997/09/26 17:56:01 halley Exp $"; * Convert network-format internet address * to base 256 d.d.d.d representation. */ -char * +/*const*/ char * inet_ntoa(struct in_addr in) { static char ret[18]; |