diff options
author | kris <kris@FreeBSD.org> | 2001-04-29 23:46:57 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-04-29 23:46:57 +0000 |
commit | 046047251192af49d2f581ab346f201a6fc0ba54 (patch) | |
tree | ac5311809eadf2a07d63ec14757a04d7732066c6 | |
parent | 281f0ed8d2ee74a723c58a9f74d95ff2f66323c7 (diff) | |
download | FreeBSD-ports-046047251192af49d2f581ab346f201a6fc0ba54.zip FreeBSD-ports-046047251192af49d2f581ab346f201a6fc0ba54.tar.gz |
Reorder includes to squash typical Linux-kiddie network header misordering.
-rw-r--r-- | net/6tunnel/files/patch-ab | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/6tunnel/files/patch-ab b/net/6tunnel/files/patch-ab new file mode 100644 index 0000000..800f251 --- /dev/null +++ b/net/6tunnel/files/patch-ab @@ -0,0 +1,15 @@ +--- 6tunnel.c.orig Sun Apr 29 23:45:30 2001 ++++ 6tunnel.c Sun Apr 29 23:45:41 2001 +@@ -12,11 +12,11 @@ + #include <stdlib.h> + #include <unistd.h> + #include <netdb.h> +-#include <arpa/inet.h> + #include <string.h> + #include <sys/types.h> + #include <netinet/in.h> + #include <sys/socket.h> ++#include <arpa/inet.h> + #include <sys/wait.h> + #include <fcntl.h> + #include <signal.h> |