summaryrefslogtreecommitdiffstats
path: root/src/clients/klist
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2012-02-28 16:15:56 +0000
committerKen Raeburn <raeburn@mit.edu>2012-02-28 16:15:56 +0000
commit666d801d3b1a288f59dc458ea1fb438dc4f4329a (patch)
tree91607b94c04d76786167c769d86aad6793b76d69 /src/clients/klist
parent7c08c875b8617f2df0fd98510eb0ad3ce12bcc86 (diff)
downloadkrb5-666d801d3b1a288f59dc458ea1fb438dc4f4329a.tar.gz
krb5-666d801d3b1a288f59dc458ea1fb438dc4f4329a.tar.xz
krb5-666d801d3b1a288f59dc458ea1fb438dc4f4329a.zip
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
Diffstat (limited to 'src/clients/klist')
-rw-r--r--src/clients/klist/klist.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/clients/klist/klist.c b/src/clients/klist/klist.c
index a9a917156f..503a1149d5 100644
--- a/src/clients/klist/klist.c
+++ b/src/clients/klist/klist.c
@@ -776,7 +776,6 @@ void one_addr(a)
memcpy (&sinp->sin_addr, a->contents, 4);
}
break;
-#ifdef KRB5_USE_INET6
case ADDRTYPE_INET6:
if (a->length != 16)
goto broken;
@@ -789,7 +788,6 @@ void one_addr(a)
memcpy (&sin6p->sin6_addr, a->contents, 16);
}
break;
-#endif
default:
printf(_("unknown addrtype %d"), a->addrtype);
return;