X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fnfs%2Fconn.c;h=89f767676b2aeb5f85d0b485c6865b6f5837c2bb;hp=733bf24f4bc0fccdb77011b9249f095a961b286b;hb=7cbd4b199f783e1ae9aaa1d3904e2700dbfcf48d;hpb=940c7c304d4a43c00c27529cdddc7c87db6eef87 diff --git a/support/nfs/conn.c b/support/nfs/conn.c index 733bf24..89f7676 100644 --- a/support/nfs/conn.c +++ b/support/nfs/conn.c @@ -6,6 +6,7 @@ * */ +#include "config.h" #include #include #include @@ -18,6 +19,10 @@ #include "conn.h" +#if SIZEOF_SOCKLEN_T - 0 == 0 +#define socklen_t int +#endif + extern int verbose; /* Map an NFS version into the corresponding Mountd version */ @@ -164,7 +169,7 @@ clnt_ping(struct sockaddr_in *saddr, const u_long prog, const u_long vers, if (sock != -1) { if (caddr) { /* Get the address of our end of this connection */ - int len = sizeof(*caddr); + socklen_t len = sizeof(*caddr); if (getsockname(sock, caddr, &len) != 0) caddr->sin_family = 0; }