aboutsummaryrefslogtreecommitdiffstats
path: root/testing/dsniff/12_arpa_inet_header.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/dsniff/12_arpa_inet_header.patch')
-rw-r--r--testing/dsniff/12_arpa_inet_header.patch62
1 files changed, 62 insertions, 0 deletions
diff --git a/testing/dsniff/12_arpa_inet_header.patch b/testing/dsniff/12_arpa_inet_header.patch
new file mode 100644
index 0000000000..3ce041f86f
--- /dev/null
+++ b/testing/dsniff/12_arpa_inet_header.patch
@@ -0,0 +1,62 @@
+Author: Luciano Bello <luciano@linux.org.ar>
+Description: aviod the "implicit declaration of function 'ntohs'" warning
+--- a/decode_aim.c 2011-06-19 17:13:50.503999391 -0500
++++ b/decode_aim.c 2011-06-19 17:15:27.267999371 -0500
+@@ -14,6 +14,7 @@
+
+ #include <stdio.h>
+ #include <string.h>
++#include <arpa/inet.h>
+
+ #include "hex.h"
+ #include "buf.h"
+--- a/decode_mmxp.c 2011-06-19 17:13:50.323999391 -0500
++++ b/decode_mmxp.c 2011-06-19 17:15:27.271999371 -0500
+@@ -21,6 +21,7 @@
+
+ #include <stdio.h>
+ #include <string.h>
++#include <arpa/inet.h>
+
+ #include "buf.h"
+ #include "decode.h"
+--- a/decode_pptp.c 2011-06-19 17:13:50.687999391 -0500
++++ b/decode_pptp.c 2011-06-19 17:15:27.275999371 -0500
+@@ -16,6 +16,7 @@
+
+ #include <stdio.h>
+ #include <string.h>
++#include <arpa/inet.h>
+
+ #include "buf.h"
+ #include "decode.h"
+--- a/decode_tds.c 2011-06-19 17:15:23.511999372 -0500
++++ b/decode_tds.c 2011-06-19 17:15:27.275999371 -0500
+@@ -19,6 +19,7 @@
+ #include <stdio.h>
+ #include <string.h>
+ #include <strlcat.h>
++#include <arpa/inet.h>
+
+ #include "decode.h"
+
+--- a/decode_vrrp.c 2011-06-19 17:13:51.243999390 -0500
++++ b/decode_vrrp.c 2011-06-19 17:15:27.287999371 -0500
+@@ -15,6 +15,7 @@
+
+ #include <stdio.h>
+ #include <string.h>
++#include <arpa/inet.h>
+
+ #include "buf.h"
+ #include "decode.h"
+--- a/ssh.c 2011-06-19 17:15:14.343999374 -0500
++++ b/ssh.c 2011-06-19 17:15:27.291999371 -0500
+@@ -23,6 +23,7 @@
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
++#include <arpa/inet.h>
+ #include <unistd.h>
+
+ #include "hex.h"