Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/rpc PR lib/15802: Shuuichirou Murata: Add missing x...
details: https://anonhg.NetBSD.org/src/rev/dcc8455faa8f
branches: trunk
changeset: 355759:dcc8455faa8f
user: ginsbach <ginsbach%NetBSD.org@localhost>
date: Sun Aug 13 01:08:41 2017 +0000
description:
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.
XXX: pullup-8
XXX: pullup-7
XXX: pullup-6
diffstat:
lib/libc/rpc/rpcb_st_xdr.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diffs (28 lines):
diff -r ec370ce15830 -r dcc8455faa8f lib/libc/rpc/rpcb_st_xdr.c
--- a/lib/libc/rpc/rpcb_st_xdr.c Sat Aug 12 23:42:52 2017 +0000
+++ b/lib/libc/rpc/rpcb_st_xdr.c Sun Aug 13 01:08:41 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.12 2017/08/13 01:08:41 ginsbach 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.12 2017/08/13 01:08:41 ginsbach 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