ports/dns/checkdns/files/patch-dns.c
Matthias Andree 983a91c89d Fix clang build, using REINPLACE_CMD to change gcc to ${CC}.
Add missing #include <string.h> in dns.c (adds files/patch-dns.c)
Fix obvious format string error in html.c (adds files/patch-html.c)
2011-07-01 01:33:11 +00:00

10 lines
253 B
C

--- ./dns.c.orig 2011-07-01 03:28:55.000000000 +0200
+++ ./dns.c 2011-07-01 03:29:06.000000000 +0200
@@ -11,6 +11,7 @@
#include <arpa/inet.h>
#include <arpa/nameser.h>
#include <resolv.h>
+#include <string.h>
#include "defs.h"
#include "tools.h"