* clnt_generic.c, clnt_simple.c, clnt_tcp.c, clnt_udp.c,
authorTom Yu <tlyu@mit.edu>
Tue, 30 Jul 1996 23:27:17 +0000 (23:27 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 30 Jul 1996 23:27:17 +0000 (23:27 +0000)
  getrpcent.c, getrpcport.c, pmap_getmaps.c, svc_simple.c:
  Remove #include <netdb.h>; it's already included in
  rpc/types.h.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8867 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 d128f38e2efb7dd0b49a708271d5ba2246be9454..24f519d332a5c3886bf23fcca6dc3c79d7aac1ef 100644 (file)
@@ -1,3 +1,15 @@
+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)
+
+       * svc_auth_gssapi.c: #include <rpc/rpc.h> before <sys/stat.h> (to
+               get sys/types.h.
+
+       * clnt_generic.c, clnt_simple.c, clnt_tcp.c, clnt_udp.c,
+               getrpcent.c, getrpcport.c, pmap_getmaps.c, svc_simple.c:
+               Remove #include <netdb.h>; it's already included in
+               rpc/types.h.
+
 Mon Jul 29 22:02:47 1996  Sam Hartman  <hartmans@tertius.mit.edu>
 
        * configure.in: Determine whether netdb.h defines struct rpcent.
index f111c2e147132e9dbd1a320d514f8d946532da1e..b877a82ec03716726d42d56b885607b0c063cb79 100644 (file)
@@ -36,7 +36,6 @@ 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 0d8f7a4df7e92c6d117ec91ab2f2b3f4e25e301d..4d4eaa74fb6f307d9e66474683573f8a4a2ef10c 100644 (file)
@@ -41,7 +41,6 @@ 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 c573897f734d85e2df4a4b8ae2d54a00427526f0..04281dea63c7ab3322dda8e0350381b74ac7d62b 100644 (file)
@@ -53,7 +53,6 @@ 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 000b9683df962edba9e1417582642b7240923a0e..fb64f500482837a2ccafd6c563bb133b0bbf4af6 100644 (file)
@@ -44,7 +44,6 @@ 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 e48d5b1e9250bfd8a896cb433a945e8e732007f1..24ebf74e901300100318d3745bc91ad2f6b9c251 100644 (file)
@@ -40,7 +40,6 @@ 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 d209a152743c73f065060d878a147ffe6540c1c8..4b6a9078c0c017f344bd540fea6364f29e3f6481 100644 (file)
@@ -37,7 +37,6 @@ 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 472b2a46db93c719d6d89171946cfe0d3c7c6971..e4521c062177552a1127debbb335dc952ce672e7 100644 (file)
@@ -43,7 +43,6 @@ 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 2a22e57224e324877ec093683a59e339f13e0d98..77739730b4e0b0374836ee729efe3222ff8035f3 100644 (file)
@@ -41,7 +41,6 @@ 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)();