diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-03-25 10:05:14 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-03-25 10:05:14 +0000 |
commit | 4145c8cad4a4a75ea75c9eaa3fd4b096ea1adeef (patch) | |
tree | a0b12a2452b0ad94086d80033433865c70601e24 /io/source/acceptor/acc_pipe.cxx | |
parent | ad17f4a73a8835750f6357ec08fd6b9c56433565 (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.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/io/source/acceptor/acc_pipe.cxx b/io/source/acceptor/acc_pipe.cxx index ae71f354d..b1c4a7bdc 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 " ); |