diff options
author | Nils Fuhrmann <nf@openoffice.org> | 2001-02-13 11:28:24 +0000 |
---|---|---|
committer | Nils Fuhrmann <nf@openoffice.org> | 2001-02-13 11:28:24 +0000 |
commit | f649ac72a14cdcddb2a836c13e381eaac3d89b17 (patch) | |
tree | 27f6ff355e380210e306bb3a0ac0f9211e8df696 | |
parent | e747e879e2258c9e15bfee5ab9fdd25ffa629a60 (diff) |
Fixes for UNIX platforms
-rw-r--r-- | tools/bootstrp/prj.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/bootstrp/prj.cxx b/tools/bootstrp/prj.cxx index 0ae5411e5ebe..f7291ee8b4f5 100644 --- a/tools/bootstrp/prj.cxx +++ b/tools/bootstrp/prj.cxx @@ -2,9 +2,9 @@ * * $RCSfile: prj.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: nf $ $Date: 2001-02-13 09:39:28 $ + * last change: $Author: nf $ $Date: 2001-02-13 12:28:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -544,11 +544,11 @@ Star::Star( GenericInformationList *pStandLst, ByteString &rVersion ) BOOL bOk = FALSE; #ifdef UNX sPath = "UnixVolume"; - GenericInformation *pUnixVolume = pDrive->GetInfo( sPath ); + GenericInformation *pUnixVolume = pDrive->GetSubInfo( sPath ); if ( pUnixVolume ) { String sRoot( pUnixVolume->GetValue(), RTL_TEXTENCODING_ASCII_US ); aEntry = DirEntry( sRoot ); - bOK = TRUE; + bOk = TRUE; } #else bOk = TRUE; |