summaryrefslogtreecommitdiff
path: root/tools/bootstrp
diff options
context:
space:
mode:
authorMartin Hollmichel <mh@openoffice.org>2001-10-02 10:04:14 +0000
committerMartin Hollmichel <mh@openoffice.org>2001-10-02 10:04:14 +0000
commitf8ab09ccd8cd39eb63e1dda30d53909ec34b850d (patch)
tree71cf1e2ebd99eed79eccaa21d6b2e83f440047f8 /tools/bootstrp
parent319e58d2ca7594266084b254911855d58347e839 (diff)
#i1219# fix for unxirxm
Diffstat (limited to 'tools/bootstrp')
-rw-r--r--tools/bootstrp/command.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/bootstrp/command.cxx b/tools/bootstrp/command.cxx
index 696fdf12d704..3ec9fb5752d5 100644
--- a/tools/bootstrp/command.cxx
+++ b/tools/bootstrp/command.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: command.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: nf $ $Date: 2000-11-10 14:20:06 $
+ * last change: $Author: mh $ $Date: 2001-10-02 11:04:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -547,7 +547,7 @@ ByteString CCommand::Search(ByteString aEnv, ByteString sItem)
// default wird eine Shell im Path gesucht,
// wenn aber compsec gestzt ist holen wir uns die
// Shell von dort
- if ( sItem == COMMAND_SHELL )
+ if ( sItem.Equals( COMMAND_SHELL ))
{
ByteString aComspec = GetEnv( "COMSPEC" );
if ( aComspec != "" )
@@ -608,7 +608,7 @@ ByteString CCommand::Search(ByteString aEnv, ByteString sItem)
}
}
- if ( sReturn == "" )
+ if ( sReturn.Equals( "" ))
sReturn = sItem;
return sReturn;