Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src/lib/libc/rpc Pull up following revision(s) (requested by ...



details:   https://anonhg.NetBSD.org/src/rev/c83020a22d17
branches:  netbsd-7
changeset: 800323:c83020a22d17
user:      snj <snj%NetBSD.org@localhost>
date:      Mon Sep 04 06:15:02 2017 +0000

description:
Pull up following revision(s) (requested by ginsbach in ticket #1494):
        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 812834281c14 -r c83020a22d17 lib/libc/rpc/rpcb_st_xdr.c
--- a/lib/libc/rpc/rpcb_st_xdr.c        Mon Sep 04 06:10:30 2017 +0000
+++ b/lib/libc/rpc/rpcb_st_xdr.c        Mon Sep 04 06:15:02 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rpcb_st_xdr.c,v 1.10 2013/03/11 20:19:29 tron Exp $    */
+/*     $NetBSD: rpcb_st_xdr.c,v 1.10.8.1 2017/09/04 06:15:02 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.10 2013/03/11 20:19:29 tron Exp $");
+__RCSID("$NetBSD: rpcb_st_xdr.c,v 1.10.8.1 2017/09/04 06:15:02 snj Exp $");
 #endif
 
 #include "namespace.h"
@@ -257,6 +257,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