commit | 586bfe4500465442acff5043f7b589e4a8b97b6a | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Fri Oct 07 16:16:31 2011 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Fri Oct 07 16:16:31 2011 +0200 |
tree | 3b2af5c4db751fb4a103a9058335fb65ab342ad1 | |
parent | 7b847a46bca22797fcb3149d5e52627fc439ba18 [diff] [blame] |
Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described as "The pipe is being closed") is now mapped to POSIX errno EPIPE (previously EINVAL).
diff --git a/PC/errmap.h b/PC/errmap.h index 8dde31c..985f673 100644 --- a/PC/errmap.h +++ b/PC/errmap.h
@@ -72,6 +72,7 @@ case 202: return 8; case 206: return 2; case 215: return 11; + case 232: return 32; case 267: return 20; case 1816: return 12; default: return EINVAL;