Changelog server/named_pipe.c: open_named_pipe The handle should be inheritable This lets Xilinx Ise/Webpack communicate with other processes again. -- Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt --------- Tel. 06151 162516 -------- Fax. 06151 164321 ---------- Index: wine/server/named_pipe.c =================================================================== RCS file: /home/wine/wine/server/named_pipe.c,v retrieving revision 1.24 diff -u -w -r1.24 named_pipe.c --- wine/server/named_pipe.c 15 May 2003 04:22:45 -0000 1.24 +++ wine/server/named_pipe.c 5 Jun 2003 11:53:13 -0000 @@ -683,7 +683,7 @@ server->client = client; client->server = server; reply->handle = alloc_handle( current->process, client, - req->access, 0 ); + req->access, 1 ); } } else