Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2012 11:11:43 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r231515 - head/lib/libipsec
Message-ID:  <201202111111.q1BBBhw3028401@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Sat Feb 11 11:11:43 2012
New Revision: 231515
URL: http://svn.freebsd.org/changeset/base/231515

Log:
  Use the correct constant (with same value) for comparying the SA type.
  
  PR:		kern/142741
  Submitted by:	Matthijs Kooiman (matthijs stdin.nl)
  MFC after:	3 days

Modified:
  head/lib/libipsec/pfkey.c

Modified: head/lib/libipsec/pfkey.c
==============================================================================
--- head/lib/libipsec/pfkey.c	Sat Feb 11 11:11:13 2012	(r231514)
+++ head/lib/libipsec/pfkey.c	Sat Feb 11 11:11:43 2012	(r231515)
@@ -662,7 +662,7 @@ pfkey_send_register(so, satype)
 {
 	int len, algno;
 
-	if (satype == PF_UNSPEC) {
+	if (satype == SADB_SATYPE_UNSPEC) {
 		for (algno = 0;
 		     algno < sizeof(supported_map)/sizeof(supported_map[0]);
 		     algno++) {



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