svn commit: r287862 - head/sys/ofed/drivers/infiniband/core

Alexander V. Chernikov melifaro at FreeBSD.org
Wed Sep 16 15:40:09 UTC 2015


Author: melifaro
Date: Wed Sep 16 15:40:08 2015
New Revision: 287862
URL: https://svnweb.freebsd.org/changeset/base/287862

Log:
  Fix build broken by r287861.
  
  Spotted by:	zb

Modified:
  head/sys/ofed/drivers/infiniband/core/addr.c

Modified: head/sys/ofed/drivers/infiniband/core/addr.c
==============================================================================
--- head/sys/ofed/drivers/infiniband/core/addr.c	Wed Sep 16 14:26:28 2015	(r287861)
+++ head/sys/ofed/drivers/infiniband/core/addr.c	Wed Sep 16 15:40:08 2015	(r287862)
@@ -332,7 +332,7 @@ mcast:
 #endif
 #ifdef INET6
 	case AF_INET6:
-		error = nd6_storelladdr(ifp, NULL, dst_in, (u_char *)edst, NULL);
+		error = nd6_resolve(ifp, is_gw, NULL, dst_in, edst, NULL);
 		break;
 #endif
 	default:


More information about the svn-src-all mailing list