disk uuid changed to 8 byte long

This commit is contained in:
2022-05-11 21:53:58 +02:00
parent af38d60982
commit 033760c328
3 changed files with 22 additions and 23 deletions

View File

@ -354,7 +354,7 @@ void reHDD::filterIgnoredDrives(list <Drive>* plistDrives)
{
string sBlkidOut = string(cLine);
sBlkidOut.erase(0, 18);
sBlkidOut.erase(36, sBlkidOut.length() - 36);
sBlkidOut.erase(8, sBlkidOut.length());
sUUID = sBlkidOut;
//cout << "blkid uuid:" << sUUID << endl;
}