diff options
author | andreas_kupries <akupries@shaw.ca> | 2009-10-07 17:11:40 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2009-10-07 17:11:40 (GMT) |
commit | 1e3e5b9c21302beb3af2827e2e2e84ef6f47b44b (patch) | |
tree | 327335456bc78fe912775e45acc10c5ba37051c8 /generic/tclIORChan.c | |
parent | 12bfc1d28a79989bd6524bb8c6fff7cfd741e183 (diff) | |
download | tcl-1e3e5b9c21302beb3af2827e2e2e84ef6f47b44b.zip tcl-1e3e5b9c21302beb3af2827e2e2e84ef6f47b44b.tar.gz tcl-1e3e5b9c21302beb3af2827e2e2e84ef6f47b44b.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 3d14ec6..305b3ad 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.28.2.7 2009/08/06 22:28:44 andreas_kupries Exp $ + * RCS: @(#) $Id: tclIORChan.c,v 1.28.2.8 2009/10/07 17:11:40 andreas_kupries Exp $ */ #include <tclInt.h> @@ -2314,7 +2314,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; } |