summaryrefslogtreecommitdiff
path: root/tools/bootstrp
diff options
context:
space:
mode:
authorMartin Hollmichel <mh@openoffice.org>2001-10-17 09:02:07 +0000
committerMartin Hollmichel <mh@openoffice.org>2001-10-17 09:02:07 +0000
commit35d50508c2f9c5da4053aa5c7098bcebf5af63e5 (patch)
treecaef6612aa98d8c056f462d66dc040985cfbb808 /tools/bootstrp
parent4b7c6afb19379b43037030bb2db8d3a3ff64cb4a (diff)
chg: ambig. string compare
Diffstat (limited to 'tools/bootstrp')
-rw-r--r--tools/bootstrp/command.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bootstrp/command.cxx b/tools/bootstrp/command.cxx
index 3ec9fb5752d5..2069b92a8c7a 100644
--- a/tools/bootstrp/command.cxx
+++ b/tools/bootstrp/command.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: command.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: mh $ $Date: 2001-10-02 11:04:14 $
+ * last change: $Author: mh $ $Date: 2001-10-17 10:02:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -550,7 +550,7 @@ ByteString CCommand::Search(ByteString aEnv, ByteString sItem)
if ( sItem.Equals( COMMAND_SHELL ))
{
ByteString aComspec = GetEnv( "COMSPEC" );
- if ( aComspec != "" )
+ if ( !aComspec.Equals(""))
return aComspec;
}