Date: Thu, 29 May 2014 07:44:42 +0400 From: Gleb Smirnoff <glebius@FreeBSD.org> To: "Bjoern A. Zeeb" <bz@FreeBSD.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r266822 - head/sys/netipsec Message-ID: <20140529034442.GS50679@FreeBSD.org> In-Reply-To: <201405282301.s4SN1Kcv020803@svn.freebsd.org> References: <201405282301.s4SN1Kcv020803@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, May 28, 2014 at 11:01:20PM +0000, Bjoern A. Zeeb wrote: B> Author: bz B> Date: Wed May 28 23:01:20 2014 B> New Revision: 266822 B> URL: http://svnweb.freebsd.org/changeset/base/266822 B> B> Log: B> Use IPv4 statistics in ipsec4_process_packet() rather than the IPv6 B> version. This also unbreaks the NOINET6 builds after r266800. B> B> Modified: B> head/sys/netipsec/ipsec_output.c B> B> Modified: head/sys/netipsec/ipsec_output.c B> ============================================================================== B> --- head/sys/netipsec/ipsec_output.c Wed May 28 19:59:27 2014 (r266821) B> +++ head/sys/netipsec/ipsec_output.c Wed May 28 23:01:20 2014 (r266822) B> @@ -576,7 +576,7 @@ ipsec4_process_packet( B> DPRINTF(("%s: unsupported protocol family %u\n", B> __func__, dst->sa.sa_family)); B> error = EPFNOSUPPORT; B> - IPSEC6STAT_INC(ips_out_inval); B> + IPSECSTAT_INC(ips_out_inval); B> goto bad; B> } B> error = (*sav->tdb_xform->xf_output)(m, isr, NULL, i, off); B> @@ -739,4 +739,4 @@ bad: B> m_freem(m); B> return error; B> } B> -#endif /*INET6*/ B> \ No newline at end of file B> +#endif /*INET6*/ Is there any reason to keep the line '\ No newline at end of file' when it is no longer at the end of the file? -- Totus tuus, Glebius.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20140529034442.GS50679>