Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src/lib/libc/rpc Pull up following revision(s) (requested by ...
details: https://anonhg.NetBSD.org/src/rev/bffc82ab9882
branches: netbsd-8
changeset: 434218:bffc82ab9882
user: snj <snj%NetBSD.org@localhost>
date: Sun Aug 20 04:53:31 2017 +0000
description:
Pull up following revision(s) (requested by ginsbach in ticket #213):
lib/libc/rpc/rpcb_st_xdr.c: revision 1.12
PR lib/15802: Shuuichirou Murata: Add missing xdr_rpcbs_rmtcalllist_ptr
There was a missing call to xdr_rpcbs_rmtcalllist_ptr in xdr_rpcb_stat.
This fixes issues with RPCBPROC_GETSTAT not working correctly with
systems that correctly implement the XDR encode/decode routine.
diffstat:
lib/libc/rpc/rpcb_st_xdr.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diffs (28 lines):
diff -r f705f59a89e9 -r bffc82ab9882 lib/libc/rpc/rpcb_st_xdr.c
--- a/lib/libc/rpc/rpcb_st_xdr.c Sun Aug 20 04:50:38 2017 +0000
+++ b/lib/libc/rpc/rpcb_st_xdr.c Sun Aug 20 04:53:31 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rpcb_st_xdr.c,v 1.11 2017/05/03 21:39:27 christos Exp $ */
+/* $NetBSD: rpcb_st_xdr.c,v 1.11.2.1 2017/08/20 04:53:31 snj Exp $ */
/*
* Copyright (c) 2010, Oracle America, Inc.
@@ -42,7 +42,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: rpcb_st_xdr.c,v 1.11 2017/05/03 21:39:27 christos Exp $");
+__RCSID("$NetBSD: rpcb_st_xdr.c,v 1.11.2.1 2017/08/20 04:53:31 snj Exp $");
#endif
#include "namespace.h"
@@ -258,6 +258,9 @@
if (!xdr_rpcbs_addrlist_ptr(xdrs, &objp->addrinfo)) {
return (FALSE);
}
+ if (!xdr_rpcbs_rmtcalllist_ptr(xdrs, &objp->rmtinfo)) {
+ return (FALSE);
+ }
return (TRUE);
}
Home |
Main Index |
Thread Index |
Old Index