--- /projects/sise/openoffice/devel/workpits/OO638C-irix-gcc-STLP/source/tools/bootstrp/command.cxx Sat Nov 11 00:20:06 2000 +++ tools/bootstrp/command.cxx Wed Oct 3 08:10:48 2001 @@ -547,10 +547,10 @@ // 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 != "" ) + if ( !aComspec.Equals("") ) return aComspec; } @@ -608,7 +608,7 @@ } } - if ( sReturn == "" ) + if ( sReturn.Equals("") ) sReturn = sItem; return sReturn;