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

Kyle Evans kevans at freebsd.org
Wed Jun 3 18:56:17 UTC 2020


On Wed, Jun 3, 2020 at 1:42 PM John Baldwin <jhb at freebsd.org> wrote:
>
> 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

Thanks! =-)


More information about the svn-src-head mailing list