summaryrefslogtreecommitdiff
path: root/io/source/acceptor/acc_pipe.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-03-25 10:05:14 +0000
committerKurt Zenker <kz@openoffice.org>2004-03-25 10:05:14 +0000
commit4700cb4050a189604a196f80b6f20e695d05b7c6 (patch)
tree16a9f4ebbe9c8be75ff598039a49de125a629341 /io/source/acceptor/acc_pipe.cxx
parent0de25f18c5f34ab503107bfa851bf40ce1a70bcb (diff)
INTEGRATION: CWS kso11 (1.5.88); FILE MERGED
2004/03/10 15:44:50 kso 1.5.88.1: #115883# - Use osl::Security when creating pipes.
Diffstat (limited to 'io/source/acceptor/acc_pipe.cxx')
-rw-r--r--io/source/acceptor/acc_pipe.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/io/source/acceptor/acc_pipe.cxx b/io/source/acceptor/acc_pipe.cxx
index 4166ca33a876..867cbd776a4e 100644
--- a/io/source/acceptor/acc_pipe.cxx
+++ b/io/source/acceptor/acc_pipe.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: acc_pipe.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: jbu $ $Date: 2002-01-07 09:17:07 $
+ * last change: $Author: kz $ $Date: 2004-03-25 11:05:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -58,6 +58,7 @@
*
*
************************************************************************/
+#include "osl/security.hxx"
#include "acceptor.hxx"
#include <com/sun/star/connection/ConnectionSetupException.hpp>
@@ -192,7 +193,7 @@ namespace io_acceptor
void PipeAcceptor::init()
{
- m_pipe = Pipe( m_sPipeName.pData , osl_Pipe_CREATE );
+ m_pipe = Pipe( m_sPipeName.pData , osl_Pipe_CREATE , osl::Security() );
if( ! m_pipe.is() )
{
OUString error = OUString::createFromAscii( "io.acceptor: Couldn't setup pipe " );