diff options
author | andreas_kupries <akupries@shaw.ca> | 2009-10-07 17:07:05 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2009-10-07 17:07:05 (GMT) |
commit | 112d28fc3f4af8849035b9d786ca0a1e4978987b (patch) | |
tree | 14e82cac5c06aae874ab28883777f9fe3659d9aa /generic/tclIORChan.c | |
parent | 7b4b4ce6883578d1bc4bdd773251d1899787df6b (diff) | |
download | tcl-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.c | 4 |
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; } |