* clnt_generic.c, clnt_simple.c, clnt_tcp.c, clnt_udp.c,
authorTom Yu <tlyu@mit.edu>
Wed, 31 Jul 1996 20:59:11 +0000 (20:59 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 31 Jul 1996 20:59:11 +0000 (20:59 +0000)
  getrpcent.c, getrpcport.c, pmap_getmaps.c, svc_simple.c:
Revert prior change due to netdb.h shuffling.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8878 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/rpc/ChangeLog
src/lib/rpc/clnt_generic.c
src/lib/rpc/clnt_simple.c
src/lib/rpc/clnt_tcp.c
src/lib/rpc/clnt_udp.c
src/lib/rpc/getrpcent.c
src/lib/rpc/getrpcport.c
src/lib/rpc/pmap_getmaps.c
src/lib/rpc/svc_simple.c

index 24f519d332a5c3886bf23fcca6dc3c79d7aac1ef..3bb12bad0180cb298f103564a56c80bf0be65446 100644 (file)
@@ -1,3 +1,13 @@
+Wed Jul 31 16:54:29 1996  Tom Yu  <tlyu@mit.edu>
+
+       * types.hin: Remove #include <netdb.h> because it appears the only
+               reason for doing so was to get struct rpcent, and we're
+               getting that via <rpc/netdb.h>.
+
+       * clnt_generic.c, clnt_simple.c, clnt_tcp.c, clnt_udp.c,
+               getrpcent.c, getrpcport.c, pmap_getmaps.c, svc_simple.c:
+               Revert prior change due to netdb.h shuffling.
+
 Tue Jul 30 18:59:17 1996  Tom Yu  <tlyu@mit.edu>
 
        * rpc.h: Don't include netdb.h (rpc/types.h already includes it)
index b877a82ec03716726d42d56b885607b0c063cb79..f111c2e147132e9dbd1a320d514f8d946532da1e 100644 (file)
@@ -36,6 +36,7 @@ static char sccsid[] = "@(#)clnt_generic.c 1.4 87/08/11 (C) 1987 SMI";
 #include <rpc/rpc.h>
 #include <sys/socket.h>
 #include <sys/errno.h>
+#include <netdb.h>
 
 /*
  * Generic client creation: takes (hostname, program-number, protocol) and
index 4d4eaa74fb6f307d9e66474683573f8a4a2ef10c..0d8f7a4df7e92c6d117ec91ab2f2b3f4e25e301d 100644 (file)
@@ -41,6 +41,7 @@ static char sccsid[] = "@(#)clnt_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";
 #include <stdio.h>
 #include <rpc/rpc.h>
 #include <sys/socket.h>
+#include <netdb.h>
 #include <string.h>
 
 static struct callrpc_private {
index 04281dea63c7ab3322dda8e0350381b74ac7d62b..c573897f734d85e2df4a4b8ae2d54a00427526f0 100644 (file)
@@ -53,6 +53,7 @@ static char sccsid[] = "@(#)clnt_tcp.c 1.37 87/10/05 Copyr 1984 Sun Micro";
 #include <stdio.h>
 #include <rpc/rpc.h>
 #include <sys/socket.h>
+#include <netdb.h>
 #include <errno.h>
 #include <rpc/pmap_clnt.h>
 
index fb64f500482837a2ccafd6c563bb133b0bbf4af6..000b9683df962edba9e1417582642b7240923a0e 100644 (file)
@@ -44,6 +44,7 @@ static char sccsid[] = "@(#)clnt_udp.c 1.39 87/08/11 Copyr 1984 Sun Micro";
 #if defined(sparc)
 #include <sys/filio.h>
 #endif
+#include <netdb.h>
 #include <errno.h>
 #include <rpc/pmap_clnt.h>
 
index 24ebf74e901300100318d3745bc91ad2f6b9c251..e48d5b1e9250bfd8a896cb433a945e8e732007f1 100644 (file)
@@ -40,6 +40,7 @@ static  char sccsid[] = "@(#)getrpcent.c 1.9 87/08/11  Copyr 1984 Sun Micro";
 #include <sys/types.h>
 #include <rpc/rpc.h>
 #include <rpc/netdb.h>
+#include <netdb.h>
 #include <string.h>
 #include <sys/socket.h>
 
index 4b6a9078c0c017f344bd540fea6364f29e3f6481..d209a152743c73f065060d878a147ffe6540c1c8 100644 (file)
@@ -37,6 +37,7 @@ static  char sccsid[] = "@(#)getrpcport.c 1.3 87/08/11 SMI";
 
 #include <stdio.h>
 #include <rpc/rpc.h>
+#include <netdb.h>
 #include <sys/socket.h>
 
 getrpcport(host, prognum, versnum, proto)
index e4521c062177552a1127debbb335dc952ce672e7..472b2a46db93c719d6d89171946cfe0d3c7c6971 100644 (file)
@@ -43,6 +43,7 @@ static char sccsid[] = "@(#)pmap_getmaps.c 1.10 87/08/11 Copyr 1984 Sun Micro";
 #include <rpc/pmap_prot.h>
 #include <rpc/pmap_clnt.h>
 #include <sys/socket.h>
+#include <netdb.h>
 #include <stdio.h>
 #include <errno.h>
 #ifdef OSF1
index 77739730b4e0b0374836ee729efe3222ff8035f3..2a22e57224e324877ec093683a59e339f13e0d98 100644 (file)
@@ -41,6 +41,7 @@ static char sccsid[] = "@(#)svc_simple.c 1.18 87/08/11 Copyr 1984 Sun Micro";
 #include <stdio.h>
 #include <rpc/rpc.h>
 #include <sys/socket.h>
+#include <netdb.h>
 
 static struct proglst {
        char *(*p_progname)();