Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: another tcp buglet
- X-seq: zsh-workers 17102
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx (Zsh hackers list)
- Subject: PATCH: another tcp buglet
- Date: Wed, 08 May 2002 17:42:21 +0100
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Something tells me this hasn't exactly been strenuously exercised so
far.
Index: Src/Modules/tcp.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Modules/tcp.c,v
retrieving revision 1.24
diff -u -r1.24 tcp.c
--- Src/Modules/tcp.c 8 May 2002 15:54:05 -0000 1.24
+++ Src/Modules/tcp.c 8 May 2002 16:41:14 -0000
@@ -271,7 +271,7 @@
for (node = firstnode(ztcp_sessions); node; incnode(node))
if (((Tcp_session)getdata(node))->fd == fd)
- return (Tcp_session)node;
+ return (Tcp_session)getdata(node);
return NULL;
}
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 392070
**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential
and/or privileged material.
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by
persons or entities other than the intended recipient is
prohibited.
If you received this in error, please contact the sender and
delete the material from any computer.
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author