diff options
author | Jacques Vidrine <nectar@FreeBSD.org> | 2002-09-07 15:35:32 +0000 |
---|---|---|
committer | Jacques Vidrine <nectar@FreeBSD.org> | 2002-09-07 15:35:32 +0000 |
commit | 717d3b5242140fff6dd2aface536d5d664a0ef4e (patch) | |
tree | 91fcc85849bbe842640a8f61b6451bdb1350bf20 /dns | |
parent | forgot to include all the patches last commit (diff) |
Fix missing <sys/types.h> in hestest.c (noticed in -CURRENT).
Notes
Notes:
svn path=/head/; revision=65784
Diffstat (limited to 'dns')
-rw-r--r-- | dns/hesiod/files/patch-hestest.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dns/hesiod/files/patch-hestest.c b/dns/hesiod/files/patch-hestest.c new file mode 100644 index 000000000000..e8a4122473b8 --- /dev/null +++ b/dns/hesiod/files/patch-hestest.c @@ -0,0 +1,12 @@ +*** hestest.c.orig Sat Sep 7 10:33:20 2002 +--- hestest.c Sat Sep 7 10:33:26 2002 +*************** +*** 24,29 **** +--- 24,30 ---- + #include <netdb.h> + #include <errno.h> + #include <pwd.h> ++ #include <sys/types.h> + #include <sys/socket.h> + #include <netinet/in.h> + #include <stdarg.h> |