about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Functions/TCP/tcp_send2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7190900b5..c31491971 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-15  Clint Adams  <clint@zsh.org>
+
+	* 26046: Functions/TCP/tcp_send: return an error if session's fd is
+	unusable.
+
 2008-11-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>
 
 	* Phil (unposted): README: another typo.
diff --git a/Functions/TCP/tcp_send b/Functions/TCP/tcp_send
index d5edf05bd..c976a2fb7 100644
--- a/Functions/TCP/tcp_send
+++ b/Functions/TCP/tcp_send
@@ -74,6 +74,8 @@ while true; do
     if [[ $? -ne 0 || -n $TCP_FD_CLOSED ]]; then
       print "Session ${TCP_SESS}: fd $fd unusable." >&2
       unset TCP_FD_CLOSED
+      mystat=1
+      continue
     fi
     if [[ -n $TCP_OUTPUT ]]; then
       tcp_output -P "$TCP_OUTPUT" -S $TCP_SESS -F $fd -q "${(j. .)*}"