Fix calling arguments to gethostbyaddr.
authorChris Hanson <org/chris-hanson/cph>
Fri, 13 Aug 1999 18:47:57 +0000 (18:47 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 13 Aug 1999 18:47:57 +0000 (18:47 +0000)
v7/src/microcode/ntsock.c
v7/src/microcode/os2sock.c
v7/src/microcode/uxsock.c

index 942a8b7e9ac144f2616957f90b970a74541ba8cb..6e9da58b0454ef50516e5830647823701d5b9af3 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: ntsock.c,v 1.6 1999/08/13 18:29:38 cph Exp $
+$Id: ntsock.c,v 1.7 1999/08/13 18:47:52 cph Exp $
 
 Copyright (c) 1997-1999 Massachusetts Institute of Technology
 
@@ -161,7 +161,8 @@ OS_canonical_host_name (const char * host_name)
 const char *
 OS_get_host_by_address (const char * host_addr)
 {
-  struct hostent * entry = (gethostbyaddr (host_addr));
+  struct hostent * entry
+    = (gethostbyaddr (host_addr, , (OS_host_address_length ()), AF_INET));
   if (entry == 0)
     return (0);
   {
index b5ed7f2df03eeea7dba25bf07182bdda5e21d724..e06e4d3414f6823142cd364a947fcaf7b6f34ea9 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: os2sock.c,v 1.11 1999/08/13 18:29:34 cph Exp $
+$Id: os2sock.c,v 1.12 1999/08/13 18:47:57 cph Exp $
 
 Copyright (c) 1990-1999 Massachusetts Institute of Technology
 
@@ -179,7 +179,8 @@ OS_canonical_host_name (const char * host_name)
 const char *
 OS_get_host_by_address (const char * host_addr)
 {
-  struct hostent * entry = (gethostbyaddr (host_addr));
+  struct hostent * entry
+    = (gethostbyaddr (host_addr, , (OS_host_address_length ()), AF_INET));
   if (entry == 0)
     return (0);
   {
index 39091b0f7c384919696b679b747e65a0d7bd1ed6..d00b9ce10be93da78fe7cd64d20093819dbd0df2 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: uxsock.c,v 1.20 1999/08/13 18:43:05 cph Exp $
+$Id: uxsock.c,v 1.21 1999/08/13 18:47:49 cph Exp $
 
 Copyright (c) 1990-1999 Massachusetts Institute of Technology
 
@@ -146,7 +146,8 @@ DEFUN (OS_canonical_host_name, (host_name), CONST char * host_name)
 CONST char *
 DEFUN (OS_get_host_by_address, (host_addr), CONST char * host_addr)
 {
-  struct hostent * entry = (gethostbyaddr (host_addr, AF_INET));
+  struct hostent * entry
+    = (gethostbyaddr (host_addr, (OS_host_address_length ()), AF_INET));
   if (entry == 0)
     return (0);
   {