Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Dec 2013 19:47:22 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r259736 - head/sys/netpfil/pf
Message-ID:  <201312221947.rBMJlMAB099798@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Sun Dec 22 19:47:22 2013
New Revision: 259736
URL: http://svnweb.freebsd.org/changeset/base/259736

Log:
  Fix incorrect header guard define in sys/netpfil/pf/pf.h, which snuck in
  in r257186.  Found by clang 3.4.

Modified:
  head/sys/netpfil/pf/pf.h

Modified: head/sys/netpfil/pf/pf.h
==============================================================================
--- head/sys/netpfil/pf/pf.h	Sun Dec 22 19:38:51 2013	(r259735)
+++ head/sys/netpfil/pf/pf.h	Sun Dec 22 19:47:22 2013	(r259736)
@@ -31,7 +31,7 @@
  */
 
 #ifndef	_NET_PF_H_
-#define	_NET_PFAR_H_
+#define	_NET_PF_H_
 
 #define	PF_TCPS_PROXY_SRC	((TCP_NSTATES)+0)
 #define	PF_TCPS_PROXY_DST	((TCP_NSTATES)+1)



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