diff options
author | Timothy Pearson <[email protected]> | 2013-04-17 01:45:51 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-04-17 01:45:51 -0500 |
commit | 4d6667159ef183f83e64ed0c8479162dc5629951 (patch) | |
tree | e1987ecdc41aae0e52d89beb5e1436bb1cc69383 /tdecore/tdehardwaredevices.cpp | |
parent | 43e139235d1457fed093c270b81d5e16c1922fc1 (diff) | |
download | tdelibs-4d6667159ef183f83e64ed0c8479162dc5629951.tar.gz tdelibs-4d6667159ef183f83e64ed0c8479162dc5629951.zip |
Fix a number of problems with the forwarding slave and dirlister
Fix TDE HW library not detecting mounted drives
Diffstat (limited to 'tdecore/tdehardwaredevices.cpp')
-rw-r--r-- | tdecore/tdehardwaredevices.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/tdehardwaredevices.cpp b/tdecore/tdehardwaredevices.cpp index 3ed8661b6..1f185985e 100644 --- a/tdecore/tdehardwaredevices.cpp +++ b/tdecore/tdehardwaredevices.cpp @@ -868,7 +868,7 @@ TQString TDEStorageDevice::mountPath() { TQStringList mountInfo = TQStringList::split(" ", line, true); TQString testNode = *mountInfo.at(0); // Check for match - if ((testNode == deviceNode()) || (testNode == dmaltname)) { + if ((testNode == deviceNode()) || (testNode == dmaltname) || (testNode == ("/dev/disk/by-uuid/" + diskUUID()))) { TQString ret = *mountInfo.at(1); ret.replace("\\040", " "); return ret; |