svn commit: r361764 - head/sys/modules/tcp

John Baldwin jhb at FreeBSD.org
Wed Jun 3 18:42:29 UTC 2020


Author: jhb
Date: Wed Jun  3 18:42:28 2020
New Revision: 361764
URL: https://svnweb.freebsd.org/changeset/base/361764

Log:
  Revise r361712 to disable tcpmd5.ko for 'options TCP_SIGNATURE'

Modified:
  head/sys/modules/tcp/Makefile

Modified: head/sys/modules/tcp/Makefile
==============================================================================
--- head/sys/modules/tcp/Makefile	Wed Jun  3 18:29:32 2020	(r361763)
+++ head/sys/modules/tcp/Makefile	Wed Jun  3 18:42:28 2020	(r361764)
@@ -16,7 +16,7 @@ _tcp_rack= 	rack
 
 .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
 	defined(ALL_MODULES)
-.if ${KERN_OPTS:MIPSEC_SUPPORT} && !${KERN_OPTS:MIPSEC}
+.if ${KERN_OPTS:MIPSEC_SUPPORT} && !${KERN_OPTS:MTCP_SIGNATURE}
 _tcpmd5=	tcpmd5
 .endif
 .endif


More information about the svn-src-all mailing list