diff options
| author | Alexander Langer <alex@FreeBSD.org> | 1997-12-25 04:21:08 +0000 |
|---|---|---|
| committer | Alexander Langer <alex@FreeBSD.org> | 1997-12-25 04:21:08 +0000 |
| commit | 3b7c07b1f24e9d74d985cbe19e405c5a0295ac68 (patch) | |
| tree | 4389ca426c0359f4f6cd11b9ced52e697b5669a4 | |
| parent | 92e88f87b9fe071c4c02938f8e0c2dd12d073957 (diff) | |
Notes
| -rw-r--r-- | lib/libc/net/gethostnamadr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/net/gethostnamadr.c b/lib/libc/net/gethostnamadr.c index 1912bba3f624..9415a5314672 100644 --- a/lib/libc/net/gethostnamadr.c +++ b/lib/libc/net/gethostnamadr.c @@ -24,8 +24,8 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)$Id$"; -static char rcsid[] = "$Id$"; +static char sccsid[] = "@(#)$Id: gethostnamadr.c,v 1.12 1997/02/22 15:00:09 peter Exp $"; +static char rcsid[] = "$Id: gethostnamadr.c,v 1.12 1997/02/22 15:00:09 peter Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -196,7 +196,7 @@ struct hostent_data; int gethostbyaddr_r(const char *addr, int len, int type, struct hostent *result, struct hostent_data *buffer) { - struct hostent *hp = 0; + struct hostent *hp; int ret; if ((hp = gethostbyaddr(addr, len, type)) == NULL) { ret = -1; |
