From 1feb8e627efd1515097505a675aa4f2e6d8cf15c Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sun, 26 Nov 2017 14:44:26 +0100 Subject: [PATCH] [LIBTIRPC] Match rtime() propotype and implementation --- dll/3rdparty/libtirpc/tirpc/rpc/auth_des.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dll/3rdparty/libtirpc/tirpc/rpc/auth_des.h b/dll/3rdparty/libtirpc/tirpc/rpc/auth_des.h index f3f9f31fef7..9aa96cb11e3 100644 --- a/dll/3rdparty/libtirpc/tirpc/rpc/auth_des.h +++ b/dll/3rdparty/libtirpc/tirpc/rpc/auth_des.h @@ -121,8 +121,12 @@ __END_DECLS __BEGIN_DECLS extern bool_t xdr_authdes_cred(XDR *, struct authdes_cred *); extern bool_t xdr_authdes_verf(XDR *, struct authdes_verf *); +#ifndef __REACTOS__ extern int rtime(dev_t, struct netbuf *, int, struct timeval *, struct timeval *); +#else +extern int rtime(struct sockaddr_in *, struct timeval *, struct timeval *); +#endif extern void kgetnetname(char *); extern enum auth_stat _svcauth_des(struct svc_req *, struct rpc_msg *); __END_DECLS