Source-Changes-HG archive

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

[src/trunk]: src/sys/netinet forgot to call tcp6_quench(). sync with kame.



details:   https://anonhg.NetBSD.org/src/rev/9bd5e118f763
branches:  trunk
changeset: 495441:9bd5e118f763
user:      itojun <itojun%NetBSD.org@localhost>
date:      Fri Jul 28 02:39:45 2000 +0000

description:
forgot to call tcp6_quench().  sync with kame.

diffstat:

 sys/netinet/tcp_output.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r b56eb14e4ebe -r 9bd5e118f763 sys/netinet/tcp_output.c
--- a/sys/netinet/tcp_output.c  Fri Jul 28 01:10:32 2000 +0000
+++ b/sys/netinet/tcp_output.c  Fri Jul 28 02:39:45 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tcp_output.c,v 1.57 2000/06/30 16:44:33 itojun Exp $   */
+/*     $NetBSD: tcp_output.c,v 1.58 2000/07/28 02:39:45 itojun Exp $   */
 
 /*
 %%% portions-copyright-nrl-95
@@ -1071,7 +1071,7 @@
                if (error == ENOBUFS) {
                        if (tp->t_inpcb)
                                tcp_quench(tp->t_inpcb, 0);
-#if 0 /*XXX def INET6*/
+#ifdef INET6
                        else if (tp->t_in6pcb)
                                tcp6_quench(tp->t_in6pcb, 0);
 #endif



Home | Main Index | Thread Index | Old Index