Module Name:    src
Committed By:   bouyer
Date:           Sat Apr 20 10:13:23 UTC 2013

Modified Files:
        src/lib/libc/rpc [netbsd-6]: clnt_vc.c

Log Message:
Pull up following revision(s) (requested by christos in ticket #875):
        lib/libc/rpc/clnt_vc.c: revision 1.22
PR/47747: Thorsten Brehm: TCP-based RPC client calls no longer terminate when
connections break. Return proper error code.
XXX: pullup 6


To generate a diff of this commit:
cvs rdiff -u -r1.17.8.2 -r1.17.8.3 src/lib/libc/rpc/clnt_vc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/rpc/clnt_vc.c
diff -u src/lib/libc/rpc/clnt_vc.c:1.17.8.2 src/lib/libc/rpc/clnt_vc.c:1.17.8.3
--- src/lib/libc/rpc/clnt_vc.c:1.17.8.2	Sun Mar 31 20:26:33 2013
+++ src/lib/libc/rpc/clnt_vc.c	Sat Apr 20 10:13:23 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: clnt_vc.c,v 1.17.8.2 2013/03/31 20:26:33 riz Exp $	*/
+/*	$NetBSD: clnt_vc.c,v 1.17.8.3 2013/04/20 10:13:23 bouyer Exp $	*/
 
 /*
  * Copyright (c) 2010, Oracle America, Inc.
@@ -38,7 +38,7 @@ static char *sccsid = "@(#)clnt_tcp.c 1.
 static char *sccsid = "@(#)clnt_tcp.c	2.2 88/08/01 4.0 RPCSRC";
 static char sccsid[] = "@(#)clnt_vc.c 1.19 89/03/16 Copyr 1988 Sun Micro";
 #else
-__RCSID("$NetBSD: clnt_vc.c,v 1.17.8.2 2013/03/31 20:26:33 riz Exp $");
+__RCSID("$NetBSD: clnt_vc.c,v 1.17.8.3 2013/04/20 10:13:23 bouyer Exp $");
 #endif
 #endif
  
@@ -711,7 +711,7 @@ read_vc(ctp, buf, len)
 		/* premature eof */
 		ct->ct_error.re_errno = ECONNRESET;
 		ct->ct_error.re_status = RPC_CANTRECV;
-		len = -1;  /* it's really an error */
+		nread = -1;  /* it's really an error */
 		break;
 
 	case -1:

Reply via email to