svn commit: r201506 - stable/6/sys/netipsec

Bjoern A. Zeeb bz at FreeBSD.org
Mon Jan 4 15:03:33 UTC 2010


Author: bz
Date: Mon Jan  4 15:03:33 2010
New Revision: 201506
URL: http://svn.freebsd.org/changeset/base/201506

Log:
  MFC r199905:
  
    Assimilate very similar input and output code paths
    (no real functional change).

Modified:
  stable/6/sys/netipsec/xform_ipcomp.c
Directory Properties:
  stable/6/sys/   (props changed)
  stable/6/sys/contrib/pf/   (props changed)
  stable/6/sys/dev/cxgb/   (props changed)

Modified: stable/6/sys/netipsec/xform_ipcomp.c
==============================================================================
--- stable/6/sys/netipsec/xform_ipcomp.c	Mon Jan  4 15:01:18 2010	(r201505)
+++ stable/6/sys/netipsec/xform_ipcomp.c	Mon Jan  4 15:03:33 2010	(r201506)
@@ -255,7 +255,6 @@ ipcomp_input_cb(struct cryptop *crp)
 			NET_UNLOCK_GIANT();
 			return error;
 		}
-
 		ipcompstat.ipcomps_noxform++;
 		DPRINTF(("%s: crypto error %d\n", __func__, crp->crp_etype));
 		error = crp->crp_etype;
@@ -493,7 +492,7 @@ ipcomp_output_cb(struct cryptop *crp)
 
 	/* Check for crypto errors */
 	if (crp->crp_etype) {
-		/* Reset session ID */
+		/* Reset the session ID */
 		if (sav->tdb_cryptoid != 0)
 			sav->tdb_cryptoid = crp->crp_sid;
 


More information about the svn-src-stable mailing list