Date: Thu, 18 Nov 2021 08:54:42 GMT From: Gleb Smirnoff <glebius@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 0dff875fa9bc - main - ipfw: remove unnecessary TCP related includes Message-ID: <202111180854.1AI8sgu9060702@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by glebius: URL: https://cgit.FreeBSD.org/src/commit/?id=0dff875fa9bccf85ba5b885fd3a6011115aa4416 commit 0dff875fa9bccf85ba5b885fd3a6011115aa4416 Author: Gleb Smirnoff <glebius@FreeBSD.org> AuthorDate: 2021-11-18 08:53:15 +0000 Commit: Gleb Smirnoff <glebius@FreeBSD.org> CommitDate: 2021-11-18 08:54:28 +0000 ipfw: remove unnecessary TCP related includes --- sys/netpfil/ipfw/ip_fw_dynamic.c | 2 +- sys/netpfil/ipfw/ip_fw_log.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netpfil/ipfw/ip_fw_dynamic.c b/sys/netpfil/ipfw/ip_fw_dynamic.c index a76e8b1ac667..00b54fa463ac 100644 --- a/sys/netpfil/ipfw/ip_fw_dynamic.c +++ b/sys/netpfil/ipfw/ip_fw_dynamic.c @@ -59,8 +59,8 @@ __FBSDID("$FreeBSD$"); #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/ip_fw.h> -#include <netinet/tcp_var.h> #include <netinet/udp.h> +#include <netinet/tcp.h> #include <netinet/ip6.h> /* IN6_ARE_ADDR_EQUAL */ #ifdef INET6 diff --git a/sys/netpfil/ipfw/ip_fw_log.c b/sys/netpfil/ipfw/ip_fw_log.c index 78412b5db702..3e375b06cd76 100644 --- a/sys/netpfil/ipfw/ip_fw_log.c +++ b/sys/netpfil/ipfw/ip_fw_log.c @@ -56,8 +56,8 @@ __FBSDID("$FreeBSD$"); #include <netinet/ip_icmp.h> #include <netinet/ip_var.h> #include <netinet/ip_fw.h> -#include <netinet/tcp_var.h> #include <netinet/udp.h> +#include <netinet/tcp.h> #include <netinet/ip6.h> #include <netinet/icmp6.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111180854.1AI8sgu9060702>