commit | 2b2c78d4f0a73498739cfc0879299d7325c35160 | [log] [tgz] |
---|---|---|
author | Matt Caswell <matt@openssl.org> | Fri Nov 13 11:22:21 2015 +0000 |
committer | Matt Caswell <matt@openssl.org> | Fri Nov 20 23:37:17 2015 +0000 |
tree | 2ed0601fe6fa8482bca8646a8cc0b290386e48f4 | |
parent | e38565f536b7674ef507564b5c646712b1d7eed4 [diff] |
Swap to using proper windows pipes We were using _pipe to create a pipe on windows. This uses the "int" type for its file descriptor for compatibility. However most windows functions expect to use a "HANDLE". Probably we could get away with just casting but it seems more robust to use the proper type and main stream windows functions. Reviewed-by: Rich Salz <rsalz@openssl.org>