svn commit: r199905 - head/sys/netipsec

Bjoern A. Zeeb bz at FreeBSD.org
Sun Nov 29 17:47:49 UTC 2009


Author: bz
Date: Sun Nov 29 17:47:49 2009
New Revision: 199905
URL: http://svn.freebsd.org/changeset/base/199905

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

Modified:
  head/sys/netipsec/xform_ipcomp.c

Modified: head/sys/netipsec/xform_ipcomp.c
==============================================================================
--- head/sys/netipsec/xform_ipcomp.c	Sun Nov 29 17:46:40 2009	(r199904)
+++ head/sys/netipsec/xform_ipcomp.c	Sun Nov 29 17:47:49 2009	(r199905)
@@ -249,10 +249,8 @@ ipcomp_input_cb(struct cryptop *crp)
 
 		if (crp->crp_etype == EAGAIN) {
 			KEY_FREESAV(&sav);
-			error = crypto_dispatch(crp);
-			return error;
+			return crypto_dispatch(crp);
 		}
-
 		V_ipcompstat.ipcomps_noxform++;
 		DPRINTF(("%s: crypto error %d\n", __func__, crp->crp_etype));
 		error = crp->crp_etype;
@@ -484,7 +482,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-head mailing list