summaryrefslogtreecommitdiffstats
path: root/generic/tclIORChan.c
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2009-10-07 17:07:05 (GMT)
committerandreas_kupries <akupries@shaw.ca>2009-10-07 17:07:05 (GMT)
commit112d28fc3f4af8849035b9d786ca0a1e4978987b (patch)
tree14e82cac5c06aae874ab28883777f9fe3659d9aa /generic/tclIORChan.c
parent7b4b4ce6883578d1bc4bdd773251d1899787df6b (diff)
downloadtcl-112d28fc3f4af8849035b9d786ca0a1e4978987b.zip
tcl-112d28fc3f4af8849035b9d786ca0a1e4978987b.tar.gz
tcl-112d28fc3f4af8849035b9d786ca0a1e4978987b.tar.bz2
* generic/tclIORChan.c (ErrnoReturn): Replace the hardwired
constant 11 with the proper errno define, EAGAIN. What was I thinking ? The BSD's have a different errno assignment and break with the hardwired number. Reported by emiliano on the chat.
Diffstat (limited to 'generic/tclIORChan.c')
-rw-r--r--generic/tclIORChan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIORChan.c b/generic/tclIORChan.c
index 5a83eca..15e41d8 100644
--- a/generic/tclIORChan.c
+++ b/generic/tclIORChan.c
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIORChan.c,v 1.40 2009/08/06 22:28:11 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclIORChan.c,v 1.41 2009/10/07 17:07:07 andreas_kupries Exp $
*/
#include <tclInt.h>
@@ -2318,7 +2318,7 @@ ErrnoReturn(ReflectedChannel *rcPtr, Tcl_Obj* resObj)
if (((Tcl_GetIntFromObj(rcPtr->interp, resObj, &code) != TCL_OK) || (code >= 0))) {
if (strcmp ("EAGAIN",Tcl_GetString(resObj)) == 0) {
- code = -11;
+ code = - EAGAIN;
} else {
code = 0;
}