From b6af1e02efe594039707cd882517663d5370f375 Mon Sep 17 00:00:00 2001 From: Carlo Landmeter Date: Thu, 25 Aug 2016 15:26:24 +0200 Subject: testing/[multiple]: move unmaintained packages This moves all packages from testing to unmaintained which have not been updated for atleast 6 months. If you are affected by this commit please follow this proceddure: * make sure your packages build on all architectures * move your pacakge(s) back to testing * if you want to keep this package and can maintain it (or find somebody to maintain it for you) for a minimum of 6 months ask it to be moved to community --- unmaintained/dsniff/11_string_header.patch | 163 +++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 unmaintained/dsniff/11_string_header.patch (limited to 'unmaintained/dsniff/11_string_header.patch') diff --git a/unmaintained/dsniff/11_string_header.patch b/unmaintained/dsniff/11_string_header.patch new file mode 100644 index 0000000000..2b6a7393ff --- /dev/null +++ b/unmaintained/dsniff/11_string_header.patch @@ -0,0 +1,163 @@ +Author: Luciano Bello +Description: Aviod the "implicit declaration of function 'str*'" warning +--- a/arp.c 2011-06-19 17:15:04.587999376 -0500 ++++ b/arp.c 2011-06-19 17:15:23.487999372 -0500 +@@ -34,6 +34,7 @@ + #include + #include + #include ++#include + + #include "arp.h" + +--- a/buf.c 2011-06-19 17:13:56.463999389 -0500 ++++ b/buf.c 2011-06-19 17:15:23.487999372 -0500 +@@ -17,6 +17,7 @@ + #include + #include + #include ++#include + + #include "buf.h" + +--- a/decode_nntp.c 2011-06-19 17:13:53.631999390 -0500 ++++ b/decode_nntp.c 2011-06-19 17:15:23.491999372 -0500 +@@ -15,6 +15,7 @@ + + #include + #include ++#include + + #include "base64.h" + #include "decode.h" +--- a/decode_pop.c 2011-06-19 17:13:54.911999390 -0500 ++++ b/decode_pop.c 2011-06-19 17:15:23.495999372 -0500 +@@ -14,6 +14,7 @@ + + #include + #include ++#include + + #include "base64.h" + #include "options.h" +--- a/decode_rlogin.c 2011-06-19 17:13:54.431999390 -0500 ++++ b/decode_rlogin.c 2011-06-19 17:15:23.495999372 -0500 +@@ -14,6 +14,8 @@ + + #include + #include ++#include ++#include + + #include "options.h" + #include "decode.h" +--- a/decode_smb.c 2011-06-19 17:13:55.103999390 -0500 ++++ b/decode_smb.c 2011-06-19 17:15:23.499999372 -0500 +@@ -15,6 +15,7 @@ + + #include + #include ++#include + + #include "decode.h" + +--- a/decode_smtp.c 2011-06-19 17:13:54.003999391 -0500 ++++ b/decode_smtp.c 2011-06-19 17:15:23.503999372 -0500 +@@ -14,6 +14,7 @@ + + #include + #include ++#include + + #include "base64.h" + #include "options.h" +--- a/decode_sniffer.c 2011-06-19 17:13:56.075999390 -0500 ++++ b/decode_sniffer.c 2011-06-19 17:15:23.503999372 -0500 +@@ -15,6 +15,8 @@ + + #include + #include ++#include ++#include + + #include "base64.h" + #include "decode.h" +--- a/decode_socks.c 2011-06-19 17:13:55.271999391 -0500 ++++ b/decode_socks.c 2011-06-19 17:15:23.507999372 -0500 +@@ -14,6 +14,7 @@ + + #include + #include ++#include + + #include "decode.h" + +--- a/decode_tds.c 2011-06-19 17:13:55.899999390 -0500 ++++ b/decode_tds.c 2011-06-19 17:15:23.511999372 -0500 +@@ -18,6 +18,7 @@ + + #include + #include ++#include + + #include "decode.h" + +--- a/decode_telnet.c 2011-06-19 17:13:55.491999391 -0500 ++++ b/decode_telnet.c 2011-06-19 17:15:23.515999372 -0500 +@@ -14,6 +14,7 @@ + + #include + #include ++#include + + #include "options.h" + #include "decode.h" +--- a/decode_x11.c 2011-06-19 17:13:53.823999390 -0500 ++++ b/decode_x11.c 2011-06-19 17:15:23.515999372 -0500 +@@ -14,6 +14,8 @@ + + #include + #include ++#include ++#include + + #include "decode.h" + +--- a/dnsspoof.c 2011-06-19 17:15:10.515999375 -0500 ++++ b/dnsspoof.c 2011-06-19 17:15:23.519999372 -0500 +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + #include + #include + #include +--- a/magic.c 2011-06-19 17:13:55.703999390 -0500 ++++ b/magic.c 2011-06-19 17:15:23.523999372 -0500 +@@ -36,6 +36,7 @@ + #include + #include + #include ++#include + #include + #include + #include +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ b/missing/strlcat.h 2011-06-19 17:15:23.527999372 -0500 +@@ -0,0 +1 @@ ++size_t strlcat(char *dst, const char *src, size_t siz); +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ b/missing/strlcpy.h 2011-06-19 17:15:23.531999372 -0500 +@@ -0,0 +1 @@ ++size_t strlcpy(char *dst, const char *src, size_t siz); +--- a/sshmitm.c 2011-06-19 17:15:10.527999375 -0500 ++++ b/sshmitm.c 2011-06-19 17:15:23.531999372 -0500 +@@ -24,6 +24,7 @@ + #include + #include + #include ++#include + + #include "buf.h" + #include "record.h" -- cgit v1.2.3