openbsd-ports/net/inadyn/patches/patch-src_dyndns_c
pea 3b0b61686a Import inadyn
inadyn is a C based client used to update DNS entries.  This is a fork of
the original INADYN implementation from Narcis Ilisei. Most of the fixes
and additions from the new "upstream" by Christoph Brill have been added.
However, this project is not a fork off of Christoph's repository, but
rather a reengineered version of the original 1.96.2 release with all
additional patches audited and merged separately. Additionally a further
set of code cleanups, features and bug fixes have been added.

ok ajacoutot@
2011-07-21 12:17:02 +00:00

19 lines
435 B
Plaintext

$OpenBSD: patch-src_dyndns_c,v 1.1.1.1 2011/07/21 12:17:02 pea Exp $
--- src/dyndns.c.orig Fri May 6 13:04:10 2011
+++ src/dyndns.c Fri May 6 13:04:55 2011
@@ -19,11 +19,13 @@
*/
#define MODULE_TAG ""
-#include <resolv.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <sys/types.h>
+#include <netinet/in.h>
+#include <arpa/nameser.h>
+#include <resolv.h>
#include <sys/stat.h>
#include <time.h>