mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 08:40:39 -04:00
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)
10 lines
253 B
C
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"
|