diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/kdc/ChangeLog | 5 | ||||
| -rw-r--r-- | src/kdc/sock2p.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/kdc/ChangeLog b/src/kdc/ChangeLog index a92869740..bf0f4dfec 100644 --- a/src/kdc/ChangeLog +++ b/src/kdc/ChangeLog @@ -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. diff --git a/src/kdc/sock2p.c b/src/kdc/sock2p.c index f337fda30..736bb22cc 100644 --- a/src/kdc/sock2p.c +++ b/src/kdc/sock2p.c @@ -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) { |
