svn commit: r224936 - head/sys/contrib/pf/net

Sergey Kandaurov pluknet at FreeBSD.org
Wed Aug 17 13:02:50 UTC 2011


Author: pluknet
Date: Wed Aug 17 13:02:50 2011
New Revision: 224936
URL: http://svn.freebsd.org/changeset/base/224936

Log:
  Fix build failure without BPF.
  
  Reported by:	deeptech71 at gmail dot com
  Approved by:	re (kib)

Modified:
  head/sys/contrib/pf/net/if_pfsync.c

Modified: head/sys/contrib/pf/net/if_pfsync.c
==============================================================================
--- head/sys/contrib/pf/net/if_pfsync.c	Wed Aug 17 12:37:14 2011	(r224935)
+++ head/sys/contrib/pf/net/if_pfsync.c	Wed Aug 17 13:02:50 2011	(r224936)
@@ -2126,8 +2126,8 @@ pfsync_sendout(void)
 #else
 	struct ifnet *ifp = &sc->sc_if;
 #endif
-	struct mbuf *m;
 #endif
+	struct mbuf *m;
 	struct ip *ip;
 	struct pfsync_header *ph;
 	struct pfsync_subheader *subh;


More information about the svn-src-all mailing list