From 666d801d3b1a288f59dc458ea1fb438dc4f4329a Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 28 Feb 2012 16:15:56 +0000 Subject: Require IPv6 support The configure-time options to enable and disable IPv6 support have been deprecated for some time, but the checks for OS support were kept. This removes those checks, and unconditionally compiles in the IPv6 support. There was a configure-time test to see if the macro INET6 needed to be defined in order to enable (visibility of) OS support for IPv6, which was needed on an IRIX system we tested with. That check is retained, but the revised code is untested on IRIX. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25719 dc483132-0cff-0310-8789-dd5450dbe970 --- src/kadmin/server/schpw.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/kadmin/server') diff --git a/src/kadmin/server/schpw.c b/src/kadmin/server/schpw.c index d2df5db73..5b5bd9b90 100644 --- a/src/kadmin/server/schpw.c +++ b/src/kadmin/server/schpw.c @@ -244,7 +244,6 @@ process_chpw_request(krb5_context context, void *server_handle, char *realm, salen = sizeof(*sin); break; } -#ifdef KRB5_USE_INET6 case ADDRTYPE_INET6: { struct sockaddr_in6 *sin6 = ss2sin6(&ss); @@ -254,7 +253,6 @@ process_chpw_request(krb5_context context, void *server_handle, char *realm, salen = sizeof(*sin6); break; } -#endif default: { struct sockaddr *sa = ss2sa(&ss); -- cgit