Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Nov 2014 23:10:03 +0000 (UTC)
From:      "Alexander V. Chernikov" <melifaro@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r275197 - head/sys/net
Message-ID:  <201411272310.sARNA3JA011808@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: melifaro
Date: Thu Nov 27 23:10:03 2014
New Revision: 275197
URL: https://svnweb.freebsd.org/changeset/base/275197

Log:
  Fix build broken by r275195.

Modified:
  head/sys/net/if_ethersubr.c

Modified: head/sys/net/if_ethersubr.c
==============================================================================
--- head/sys/net/if_ethersubr.c	Thu Nov 27 23:06:25 2014	(r275196)
+++ head/sys/net/if_ethersubr.c	Thu Nov 27 23:10:03 2014	(r275197)
@@ -234,12 +234,14 @@ ether_output(struct ifnet *ifp, struct m
 #endif
 	case pseudo_AF_HDRCMPLT:
 	    {
+		const struct ether_header *eh;
+
 		hdrcmplt = 1;
 		/* FALLTHROUGH */
 
 	case AF_UNSPEC:
 		loop_copy = 0; /* if this is for us, don't do it */
-		eh = (struct ether_header *)dst->sa_data;
+		eh = (const struct ether_header *)dst->sa_data;
 		(void)memcpy(edst, eh->ether_dhost, sizeof (edst));
 		type = eh->ether_type;
 		break;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411272310.sARNA3JA011808>