Source-Changes-HG archive

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

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



details:   https://anonhg.NetBSD.org/src/rev/938a90a601cf
branches:  netbsd-3
changeset: 577534:938a90a601cf
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Nov 21 21:48:07 2005 +0000

description:
Pull up following revision(s) (requested by chs in ticket #964):
        lib/libc/rpc/clnt_dg.c: revision 1.17
Fix build: maskp should be a pointer to a sigset_t.  Hi, christos@!

diffstat:

 lib/libc/rpc/clnt_dg.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (30 lines):

diff -r 74545f664468 -r 938a90a601cf lib/libc/rpc/clnt_dg.c
--- a/lib/libc/rpc/clnt_dg.c    Mon Nov 21 21:40:07 2005 +0000
+++ b/lib/libc/rpc/clnt_dg.c    Mon Nov 21 21:48:07 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: clnt_dg.c,v 1.14.2.2 2005/11/21 20:16:27 tron Exp $    */
+/*     $NetBSD: clnt_dg.c,v 1.14.2.3 2005/11/21 21:48:07 tron Exp $    */
 
 /*
  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@@ -39,7 +39,7 @@
 #if 0
 static char sccsid[] = "@(#)clnt_dg.c 1.19 89/03/16 Copyr 1988 Sun Micro";
 #else
-__RCSID("$NetBSD: clnt_dg.c,v 1.14.2.2 2005/11/21 20:16:27 tron Exp $");
+__RCSID("$NetBSD: clnt_dg.c,v 1.14.2.3 2005/11/21 21:48:07 tron Exp $");
 #endif
 #endif
 
@@ -322,9 +322,9 @@
        struct timeval startime, curtime;
        int firsttimeout = 1;
 #ifdef _REENTRANT
-       sigset_t mask, maskp = &mask;
+       sigset_t mask, *maskp = &mask;
 #else
-       sigset_t maskp = NULL;
+       sigset_t *maskp = NULL;
 #endif
        sigset_t newmask;
        ssize_t recvlen = 0;



Home | Main Index | Thread Index | Old Index