summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-03-25 10:05:28 +0000
committerKurt Zenker <kz@openoffice.org>2004-03-25 10:05:28 +0000
commit19a3bfc99ac751a63f153b8083fa2365de9c99f2 (patch)
tree07d77d454a6a09b17b7d15342f04e51c88066ed7 /io
parent4700cb4050a189604a196f80b6f20e695d05b7c6 (diff)
INTEGRATION: CWS kso11 (1.15.4); FILE MERGED
2004/03/10 15:44:50 kso 1.15.4.1: #115883# - Use osl::Security when creating pipes.
Diffstat (limited to 'io')
-rw-r--r--io/source/connector/connector.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/io/source/connector/connector.cxx b/io/source/connector/connector.cxx
index 3f59472f714a..ff32b2aa4a8b 100644
--- a/io/source/connector/connector.cxx
+++ b/io/source/connector/connector.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: connector.cxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: hr $ $Date: 2004-02-02 20:23:56 $
+ * last change: $Author: kz $ $Date: 2004-03-25 11:05:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,6 +59,7 @@
*
************************************************************************/
#include <osl/mutex.hxx>
+#include "osl/security.hxx"
#include <uno/mapping.hxx>
@@ -142,7 +143,7 @@ namespace stoc_connector
PipeConnection *pConn = new PipeConnection( aName, sConnectionDescription );
- if( pConn->m_pipe.create( aName.pData, osl_Pipe_OPEN ) )
+ if( pConn->m_pipe.create( aName.pData, osl_Pipe_OPEN, osl::Security() ) )
{
r = Reference < XConnection > ( (XConnection * ) pConn );
}