diff options
author | kevlo <kevlo@FreeBSD.org> | 2016-06-09 14:33:00 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2016-06-09 14:33:00 +0000 |
commit | 3623b3448c479b22795bcdb84c20218defa6fb7b (patch) | |
tree | 8c743181716d845176e83efb22704f0d647a7289 /lib | |
parent | b9435dd0c29dd1e192bc4a0d0fabdb2d347a1ab2 (diff) | |
download | FreeBSD-src-3623b3448c479b22795bcdb84c20218defa6fb7b.zip FreeBSD-src-3623b3448c479b22795bcdb84c20218defa6fb7b.tar.gz |
Fix the rpcb_getaddr() definition to match its declaration.
Submitted by: Sebastian Huber <sebastian dot huber at embedded-brains dot de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/rpc/rpcb_clnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/rpc/rpcb_clnt.c b/lib/libc/rpc/rpcb_clnt.c index 02206a9..f9d89c1 100644 --- a/lib/libc/rpc/rpcb_clnt.c +++ b/lib/libc/rpc/rpcb_clnt.c @@ -1010,7 +1010,7 @@ done: * * Assuming that the address is all properly allocated */ -int +bool_t rpcb_getaddr(rpcprog_t program, rpcvers_t version, const struct netconfig *nconf, struct netbuf *address, const char *host) { |