From 775650a0d7873d344033a18597bcf2a9254cc684 Mon Sep 17 00:00:00 2001 From: ngie Date: Sat, 3 Dec 2016 19:52:33 +0000 Subject: MFC r264196: r264196 (by theraven): Move definitions out of rpc_com so that the linker doesn't complain about multiple definitions. --- lib/libc/rpc/rpc_com.h | 4 ++-- lib/libc/rpc/svc.c | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/libc/rpc/rpc_com.h b/lib/libc/rpc/rpc_com.h index 770faf9..bfa6a0b 100644 --- a/lib/libc/rpc/rpc_com.h +++ b/lib/libc/rpc/rpc_com.h @@ -86,8 +86,8 @@ bool_t __xdrrec_setnonblock(XDR *, int); bool_t __xdrrec_getrec(XDR *, enum xprt_stat *, bool_t); void __xprt_unregister_unlocked(SVCXPRT *); -SVCXPRT **__svc_xports; -int __svc_maxrec; +extern SVCXPRT **__svc_xports; +extern int __svc_maxrec; __END_DECLS diff --git a/lib/libc/rpc/svc.c b/lib/libc/rpc/svc.c index 0bed986..d68fa9f 100644 --- a/lib/libc/rpc/svc.c +++ b/lib/libc/rpc/svc.c @@ -84,6 +84,9 @@ static struct svc_callout { void (*sc_dispatch)(struct svc_req *, SVCXPRT *); } *svc_head; +SVCXPRT **__svc_xports; +int __svc_maxrec; + static struct svc_callout *svc_find(rpcprog_t, rpcvers_t, struct svc_callout **, char *); static void __xprt_do_unregister (SVCXPRT *xprt, bool_t dolock); -- cgit v1.1