summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-05-28 11:39:06 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-05-28 11:39:06 +0000
commite8bcc947e3e99ab5aa3caf4d0dfb00c08cbbb362 (patch)
tree41506c6f0e5657b21f74501fbb8fecfb4195b9a4 /extensions
parent493537209fa90b918889f1fdf26033a7bda2864f (diff)
INTEGRATION: CWS vcl09 (1.3.10); FILE MERGED
2003/05/08 18:46:10 pl 1.3.10.1: #109426# make rpnp.so work on Linux
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/plugin/unx/sysplug.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/plugin/unx/sysplug.cxx b/extensions/source/plugin/unx/sysplug.cxx
index 566b05426a85..ba2d18260295 100644
--- a/extensions/source/plugin/unx/sysplug.cxx
+++ b/extensions/source/plugin/unx/sysplug.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sysplug.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: vg $ $Date: 2003-04-15 16:18:10 $
+ * last change: $Author: vg $ $Date: 2003-05-28 12:39:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -98,9 +98,9 @@ UnxPluginComm::UnxPluginComm(
if( ! ( m_nCommPID = fork() ) )
{
- execvp( pArgs[0], pArgs );
+ execvp( pArgs[0], pArgs );
fprintf( stderr, "Error: could not exec %s\n", pArgs[0] );
- exit(255);
+ _exit(255);
}
if( m_nCommPID != -1 )