Source-Changes-HG archive

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

[src/netbsd-6]: src Revert ticket 875, it doesn't applies to netbsd-6 (the bu...



details:   https://anonhg.NetBSD.org/src/rev/9d7653b6904e
branches:  netbsd-6
changeset: 775766:9d7653b6904e
user:      bouyer <bouyer%NetBSD.org@localhost>
date:      Sat Apr 20 14:00:40 2013 +0000

description:
Revert ticket 875, it doesn't applies to netbsd-6 (the bug was introduced
in 1.18, netbsd-6 is at 1.17)

diffstat:

 doc/CHANGES-6.1        |  8 +-------
 lib/libc/rpc/clnt_vc.c |  6 +++---
 2 files changed, 4 insertions(+), 10 deletions(-)

diffs (49 lines):

diff -r 874fe960b13b -r 9d7653b6904e doc/CHANGES-6.1
--- a/doc/CHANGES-6.1   Sat Apr 20 10:23:52 2013 +0000
+++ b/doc/CHANGES-6.1   Sat Apr 20 14:00:40 2013 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.1,v 1.1.2.118 2013/04/20 10:23:52 bouyer Exp $
+# $NetBSD: CHANGES-6.1,v 1.1.2.119 2013/04/20 14:00:40 bouyer Exp $
 
 A complete list of changes from the 6.0 release until the 6.1 release:
 
@@ -8880,12 +8880,6 @@
        argument for resolvedpath.
        [christos, ticket #874]
 
-lib/libc/rpc/clnt_vc.c                         1.22
-
-       PR/47747: Thorsten Brehm: TCP-based RPC client calls no longer
-       terminate when connections break. Return proper error code.
-       [christos, ticket #875]
-
 sys/kern/subr_kmem.c                           1.47
 
        addresses PR/47512
diff -r 874fe960b13b -r 9d7653b6904e lib/libc/rpc/clnt_vc.c
--- a/lib/libc/rpc/clnt_vc.c    Sat Apr 20 10:23:52 2013 +0000
+++ b/lib/libc/rpc/clnt_vc.c    Sat Apr 20 14:00:40 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: clnt_vc.c,v 1.17.8.3 2013/04/20 10:13:23 bouyer Exp $  */
+/*     $NetBSD: clnt_vc.c,v 1.17.8.4 2013/04/20 14:00:40 bouyer Exp $  */
 
 /*
  * Copyright (c) 2010, Oracle America, Inc.
@@ -38,7 +38,7 @@
 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.3 2013/04/20 10:13:23 bouyer Exp $");
+__RCSID("$NetBSD: clnt_vc.c,v 1.17.8.4 2013/04/20 14:00:40 bouyer Exp $");
 #endif
 #endif
  
@@ -711,7 +711,7 @@
                /* premature eof */
                ct->ct_error.re_errno = ECONNRESET;
                ct->ct_error.re_status = RPC_CANTRECV;
-               nread = -1;  /* it's really an error */
+               len = -1;  /* it's really an error */
                break;
 
        case -1:



Home | Main Index | Thread Index | Old Index