Skip to content

Commit

Permalink
apply debian patch 11_string_header.patch
Browse files Browse the repository at this point in the history
  • Loading branch information
wertarbyte committed Oct 29, 2011
1 parent ae25c6a commit d0fbb14
Show file tree
Hide file tree
Showing 17 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions arp.c
Expand Up @@ -34,6 +34,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#include "arp.h"

Expand Down
1 change: 1 addition & 0 deletions buf.c
Expand Up @@ -17,6 +17,7 @@
#include <unistd.h>
#include <ctype.h>
#include <err.h>
#include <string.h>

#include "buf.h"

Expand Down
1 change: 1 addition & 0 deletions decode_nntp.c
Expand Up @@ -15,6 +15,7 @@

#include <stdio.h>
#include <string.h>
#include <strlcat.h>

#include "base64.h"
#include "decode.h"
Expand Down
1 change: 1 addition & 0 deletions decode_pop.c
Expand Up @@ -14,6 +14,7 @@

#include <stdio.h>
#include <string.h>
#include <strlcat.h>

#include "base64.h"
#include "options.h"
Expand Down
2 changes: 2 additions & 0 deletions decode_rlogin.c
Expand Up @@ -14,6 +14,8 @@

#include <stdio.h>
#include <string.h>
#include <strlcpy.h>
#include <strlcat.h>

#include "options.h"
#include "decode.h"
Expand Down
1 change: 1 addition & 0 deletions decode_smb.c
Expand Up @@ -15,6 +15,7 @@

#include <stdio.h>
#include <string.h>
#include <strlcat.h>

#include "decode.h"

Expand Down
1 change: 1 addition & 0 deletions decode_smtp.c
Expand Up @@ -14,6 +14,7 @@

#include <stdio.h>
#include <string.h>
#include <strlcat.h>

#include "base64.h"
#include "options.h"
Expand Down
2 changes: 2 additions & 0 deletions decode_sniffer.c
Expand Up @@ -15,6 +15,8 @@

#include <stdio.h>
#include <string.h>
#include <strlcat.h>
#include <strlcpy.h>

#include "base64.h"
#include "decode.h"
Expand Down
1 change: 1 addition & 0 deletions decode_socks.c
Expand Up @@ -14,6 +14,7 @@

#include <stdio.h>
#include <string.h>
#include <strlcat.h>

#include "decode.h"

Expand Down
1 change: 1 addition & 0 deletions decode_tds.c
Expand Up @@ -18,6 +18,7 @@

#include <stdio.h>
#include <string.h>
#include <strlcat.h>

#include "decode.h"

Expand Down
1 change: 1 addition & 0 deletions decode_telnet.c
Expand Up @@ -14,6 +14,7 @@

#include <stdio.h>
#include <string.h>
#include <strlcpy.h>

#include "options.h"
#include "decode.h"
Expand Down
2 changes: 2 additions & 0 deletions decode_x11.c
Expand Up @@ -14,6 +14,8 @@

#include <stdio.h>
#include <string.h>
#include <strlcat.h>
#include <strlcpy.h>

#include "decode.h"

Expand Down
1 change: 1 addition & 0 deletions dnsspoof.c
Expand Up @@ -20,6 +20,7 @@
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <strlcpy.h>
#include <resolv.h>
#include <err.h>
#include <libnet.h>
Expand Down
1 change: 1 addition & 0 deletions magic.c
Expand Up @@ -36,6 +36,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strlcpy.h>
#include <ctype.h>
#include <time.h>
#include <err.h>
Expand Down
1 change: 1 addition & 0 deletions missing/strlcat.h
@@ -0,0 +1 @@
size_t strlcat(char *dst, const char *src, size_t siz);
1 change: 1 addition & 0 deletions missing/strlcpy.h
@@ -0,0 +1 @@
size_t strlcpy(char *dst, const char *src, size_t siz);
1 change: 1 addition & 0 deletions sshmitm.c
Expand Up @@ -24,6 +24,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <strlcat.h>

#include "buf.h"
#include "record.h"
Expand Down

0 comments on commit d0fbb14

Please sign in to comment.