-rw-r--r-- | library/storage.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/library/storage.cpp b/library/storage.cpp index b4d743e..8346e82 100644 --- a/library/storage.cpp +++ b/library/storage.cpp @@ -45,16 +45,16 @@ static bool isCF(const QString& m) if ( f ) { - char line[1024]; - char devtype[80]; - char devname[80]; - while ( fgets( line, 1024, f ) ) { - // 0 ide ide-cs 0 hda 3 0 - if ( sscanf(line,"%*d %s %*s %*s %s", devtype, devname )==2 ) - { - if ( QString(devtype) == "ide" && m.find(devname)>0 ) { + char line[1024]; + char devtype[80]; + char devname[80]; + while ( fgets( line, 1024, f ) ) { + // 0 ide ide-cs 0 hda 3 0 + if ( sscanf(line,"%*d %s %*s %*s %s", devtype, devname )==2 ) + { + if ( QString(devtype) == "ide" && m.find(devname)>0 ) { + fclose(f); + return TRUE; + } + } + } fclose(f); - return TRUE; - } - } - } - fclose(f); } @@ -156,4 +156,4 @@ void StorageInfo::update() humanname = tr("Internal Storage") + " " + humanname.mid(13); - else if ( disk.left(10) == "/dev/ramfs" ) - humanname = tr("Internal Storage") + " " + humanname.mid(10); + else if ( disk.left(5) == "tmpfs" ) //ipaqs /mnt/ramfs + humanname = tr("Ram FS") + " " + humanname.mid(5); FileSystem *fs = new FileSystem( disk, *fsit, humanname, removable, opts ); |