author | llornkcor <llornkcor> | 2002-06-24 13:03:30 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-06-24 13:03:30 (UTC) |
commit | 2a6e2c554e9a1b647fa9d6827948c38fdbaf3f2a (patch) (side-by-side diff) | |
tree | dc2f59a5f5ac841c962db050f7db94f821f56b7c /library | |
parent | 428959b4974f51d55c088c0f6d73ee24b726a702 (diff) | |
download | opie-2a6e2c554e9a1b647fa9d6827948c38fdbaf3f2a.zip opie-2a6e2c554e9a1b647fa9d6827948c38fdbaf3f2a.tar.gz opie-2a6e2c554e9a1b647fa9d6827948c38fdbaf3f2a.tar.bz2 |
small fix sent some time ago by Max Weninger, for non familiar 'standard' file layout
-rw-r--r-- | library/lnkproperties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp index ebfd4bf..28a71e9 100644 --- a/library/lnkproperties.cpp +++ b/library/lnkproperties.cpp @@ -170,7 +170,7 @@ void LnkProperties::setupLocations() if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) { if ( (*it)->isRemovable() || (*it)->disk() == "/dev/mtdblock1" || - (*it)->disk() == "/dev/mtdblock/1" ) { + (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" ) { d->locationCombo->insertItem( (*it)->name(), index ); locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) ); if ( lnk->file().contains( (*it)->path() ) ) { |