svn commit: r275705 - head/sys/netipsec

Andrey V. Elsukov ae at FreeBSD.org
Thu Dec 11 17:01:54 UTC 2014


Author: ae
Date: Thu Dec 11 17:01:53 2014
New Revision: 275705
URL: https://svnweb.freebsd.org/changeset/base/275705

Log:
  Remove unused mtag variable.
  
  Obtained from:	Yandex LLC
  Sponsored by:	Yandex LLC

Modified:
  head/sys/netipsec/xform_ipcomp.c

Modified: head/sys/netipsec/xform_ipcomp.c
==============================================================================
--- head/sys/netipsec/xform_ipcomp.c	Thu Dec 11 16:53:29 2014	(r275704)
+++ head/sys/netipsec/xform_ipcomp.c	Thu Dec 11 17:01:53 2014	(r275705)
@@ -227,7 +227,6 @@ ipcomp_input_cb(struct cryptop *crp)
 	struct cryptodesc *crd;
 	struct tdb_crypto *tc;
 	int skip, protoff;
-	struct mtag *mtag;
 	struct mbuf *m;
 	struct secasvar *sav;
 	struct secasindex *saidx;
@@ -241,7 +240,6 @@ ipcomp_input_cb(struct cryptop *crp)
 	IPSEC_ASSERT(tc != NULL, ("null opaque crypto data area!"));
 	skip = tc->tc_skip;
 	protoff = tc->tc_protoff;
-	mtag = (struct mtag *) tc->tc_ptr;
 	m = (struct mbuf *) crp->crp_buf;
 
 	sav = tc->tc_sav;


More information about the svn-src-head mailing list