svn commit: r360206 - head/sys/netipsec

John Baldwin jhb at FreeBSD.org
Wed Apr 22 21:03:25 UTC 2020


Author: jhb
Date: Wed Apr 22 21:03:24 2020
New Revision: 360206
URL: https://svnweb.freebsd.org/changeset/base/360206

Log:
  Fix name of 3DES cipher in deprecation warning.
  
  Submitted by:	cem
  MFC after:	1 week

Modified:
  head/sys/netipsec/xform_esp.c

Modified: head/sys/netipsec/xform_esp.c
==============================================================================
--- head/sys/netipsec/xform_esp.c	Wed Apr 22 21:00:14 2020	(r360205)
+++ head/sys/netipsec/xform_esp.c	Wed Apr 22 21:03:24 2020	(r360206)
@@ -166,7 +166,7 @@ esp_init(struct secasvar *sav, struct xformsw *xsp)
 		break;
 	case SADB_EALG_3DESCBC:
 		if (ratecheck(&tdeswarn, &ipsec_warn_interval))
-			gone_in(13, "DES cipher for IPsec");
+			gone_in(13, "3DES cipher for IPsec");
 		break;
 	case SADB_X_EALG_BLOWFISHCBC:
 		if (ratecheck(&blfwarn, &ipsec_warn_interval))


More information about the svn-src-all mailing list