adopt newer debian #35

Merged
localhorst merged 7 commits from develop into master 2022-01-26 16:41:57 +01:00
Showing only changes of commit 068413c15d - Show all commits

View File

@ -298,7 +298,7 @@ void reHDD::searchDrives(list <Drive>* plistDrives)
if (outputfileHwinfo == NULL)
{
Logger::logThis()->error("Unable to scann attached drives");
Logger::logThis()->error("Unable to scan attached drives");
exit(EXIT_FAILURE);
}
@ -310,6 +310,7 @@ void reHDD::searchDrives(list <Drive>* plistDrives)
tmpDrive->state = Drive::NONE;
tmpDrive->bIsOffline = false;
plistDrives->push_back(*tmpDrive);
Logger::logThis()->info("search drives: " + tmpDrive->getPath());
}
}
fclose(outputfileHwinfo);