summaryrefslogtreecommitdiffstats
path: root/src/kdc
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>1997-12-12 04:30:20 +0000
committerTom Yu <tlyu@mit.edu>1997-12-12 04:30:20 +0000
commitcfcf13ed1f737705b2d469831e810274cdf41474 (patch)
treec00ef9d953583e9d28194e239e6709455c73e97b /src/kdc
parent20e560a3387a012658145351b99fb14cf3c52506 (diff)
downloadkrb5-cfcf13ed1f737705b2d469831e810274cdf41474.tar.gz
krb5-cfcf13ed1f737705b2d469831e810274cdf41474.tar.xz
krb5-cfcf13ed1f737705b2d469831e810274cdf41474.zip
* kerberos_v4.c: Don't include sys/socket.h or netdb.h, as krb.h
already gets those and Ultrix doesn't protect them against multiple inclusion. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10334 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/kdc')
-rw-r--r--src/kdc/ChangeLog6
-rw-r--r--src/kdc/kerberos_v4.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/kdc/ChangeLog b/src/kdc/ChangeLog
index ab5a7b0f7..3025866c0 100644
--- a/src/kdc/ChangeLog
+++ b/src/kdc/ChangeLog
@@ -1,3 +1,9 @@
+Thu Dec 11 23:29:41 1997 Tom Yu <tlyu@mit.edu>
+
+ * kerberos_v4.c: Don't include sys/socket.h or netdb.h, as krb.h
+ already gets those and Ultrix doesn't protect them against
+ multiple inclusion.
+
Mon Nov 24 19:57:48 1997 Theodore Y. Ts'o <tytso@mit.edu>
* do_tgs_req.c (process_tgs_req): Add check to make sure cname and
diff --git a/src/kdc/kerberos_v4.c b/src/kdc/kerberos_v4.c
index 8274a7a99..110eb5724 100644
--- a/src/kdc/kerberos_v4.c
+++ b/src/kdc/kerberos_v4.c
@@ -38,10 +38,8 @@
#include <stdio.h>
#include <sys/types.h>
-#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
-#include <netdb.h>
#include <signal.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>