[zebra] For solaris IPv6 PtP interfaces, try to support prefixlen != 128

2006-12-13 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

	* if_ioctl_solaris.c: (if_get_addr) For IPv6, stop assuming
	  that all IFF_POINTOPOINT have prefixlen of IPV6_MAX_BITLEN.
	  Instead, always try the SIOCGLIFSUBNET ioctl; if that fails,
	  then we fall back to IPV6_MAX_BITLEN for PtP interfaces.
diff --git a/zebra/ChangeLog b/zebra/ChangeLog
index 6b50cf0..4139e85 100644
--- a/zebra/ChangeLog
+++ b/zebra/ChangeLog
@@ -1,3 +1,10 @@
+2006-12-13 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
+
+	* if_ioctl_solaris.c: (if_get_addr) For IPv6, stop assuming
+	  that all IFF_POINTOPOINT have prefixlen of IPV6_MAX_BITLEN.
+	  Instead, always try the SIOCGLIFSUBNET ioctl; if that fails,
+	  then we fall back to IPV6_MAX_BITLEN for PtP interfaces.
+
 2006-12-12 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
 
 	* connected.c: (connected_up_ipv4, connected_down_ipv4,
diff --git a/zebra/if_ioctl_solaris.c b/zebra/if_ioctl_solaris.c
index 4cb16c7..4267a42 100644
--- a/zebra/if_ioctl_solaris.c
+++ b/zebra/if_ioctl_solaris.c
@@ -309,23 +309,18 @@
 #ifdef HAVE_IPV6
   else if (af == AF_INET6)
     {
-      if (ifp->flags & IFF_POINTOPOINT)
-        {
-          prefixlen = IPV6_MAX_BITLEN;
-        }
+      if (if_ioctl_ipv6 (SIOCGLIFSUBNET, (caddr_t) & lifreq) < 0)
+	{
+	  if (ifp->flags & IFF_POINTOPOINT)
+	    prefixlen = IPV6_MAX_BITLEN;
+	  else
+	    zlog_warn ("SIOCGLIFSUBNET (%s) fail: %s",
+		       ifp->name, safe_strerror (errno));
+	}
       else
-        {
-          ret = if_ioctl_ipv6 (SIOCGLIFSUBNET, (caddr_t) & lifreq);
-          if (ret < 0)
-            {
-              zlog_warn ("SIOCGLIFSUBNET (%s) fail: %s",
-                         ifp->name, safe_strerror (errno));
-            }
-          else
-            {
-              prefixlen = lifreq.lifr_addrlen;
-            }
-        }
+	{
+	  prefixlen = lifreq.lifr_addrlen;
+	}
     }
 #endif /* HAVE_IPV6 */