disable inet_ntop definition
authorKen Raeburn <raeburn@mit.edu>
Tue, 2 Jul 2002 04:21:39 +0000 (04:21 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 2 Jul 2002 04:21:39 +0000 (04:21 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14595 dc483132-0cff-0310-8789-dd5450dbe970

src/kdc/ChangeLog
src/kdc/sock2p.c

index a92869740f7c31efb2d2b9c0290195103dab1a94..bf0f4dfec9d65af7cdba41fa27494dbe61ca0854 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-02  Ken Raeburn  <raeburn@mit.edu>
+
+       * sock2p.c (inet_ntop): Disable definition; it should be provided
+       by the socket support header files.
+
 2002-06-26  Ken Raeburn  <raeburn@mit.edu>
 
        * dispatch.c (dispatch): Remove arg "portnum"; update callers.
index f337fda30ce4c5192caca1c061bb4c60ddee58ea..736bb22cca39b7a16de07a48f0744b5d4dd28c33 100644 (file)
@@ -34,6 +34,8 @@
 #include <sys/socket.h>
 #include "kdc_util.h"
 
+#if 0 /* if we really need this, put it into socket-utils.h or fake-addrinfo.h */
+
 #ifndef HAVE_INET_NTOP
 char *
 inet_ntop (int family, const void *address, char *buf, size_t bufsiz)
@@ -75,6 +77,8 @@ inet_ntop (int family, const void *address, char *buf, size_t bufsiz)
 }
 #endif
 
+#endif
+
 void
 sockaddr2p (const struct sockaddr *s, char *buf, size_t bufsiz, int *port_p)
 {