From b14062764e21e3f03b5d0176f0ac6c127e760012 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Thu, 5 Jul 2012 21:17:45 +1000 Subject: [PATCH] ZDR: we need to include both arpa/inet.h and time.h --- lib/libnfs-zdr.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/libnfs-zdr.c b/lib/libnfs-zdr.c index 8a60491..0ef4fc0 100644 --- a/lib/libnfs-zdr.c +++ b/lib/libnfs-zdr.c @@ -20,9 +20,15 @@ * i.e. zdrmem_create() buffers. * It aims to be compatible with normal rpcgen generated functions. */ +#ifdef WIN32 +#include "win32_compat.h" +#else +#include +#endif/*WIN32*/ #include #include +#include #include "libnfs-zdr.h" struct opaque_auth _null_auth; -- 2.34.1