commit | 51596c166b856deaef04c089258b08d3b0b90be3 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Wed Jul 10 11:45:46 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Thu Jul 11 10:40:20 2019 +0200 |
tree | 16764726d87be8808daa9f97788c630913ede66e | |
parent | fb2fce1680486fe3bbe61b5a4a409c7b845d240f [diff] |
CLEANUP: proto_tcp: Remove useless header inclusions. I guess "sys/un.h" and "sys/stat.h" were included for debugging purposes when "proto_tcp.c" was initially created. There are no more useful.
diff --git a/src/proto_tcp.c b/src/proto_tcp.c index 64ffb83..4ca6fc2 100644 --- a/src/proto_tcp.c +++ b/src/proto_tcp.c
@@ -25,9 +25,7 @@ #include <sys/param.h> #include <sys/socket.h> -#include <sys/stat.h> #include <sys/types.h> -#include <sys/un.h> #include <netinet/tcp.h> #include <netinet/in.h>