diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /unmaintained/dsniff/12_arpa_inet_header.patch | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
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
Diffstat (limited to 'unmaintained/dsniff/12_arpa_inet_header.patch')
-rw-r--r-- | unmaintained/dsniff/12_arpa_inet_header.patch | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/unmaintained/dsniff/12_arpa_inet_header.patch b/unmaintained/dsniff/12_arpa_inet_header.patch new file mode 100644 index 0000000000..3ce041f86f --- /dev/null +++ b/unmaintained/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" |