open_named_pipe should create handles with the inherit attribute

Uwe Bonnes bon at elektron.ikp.physik.tu-darmstadt.de
Thu Jun 5 06:56:32 CDT 2003


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 at 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



More information about the wine-patches mailing list