We don't need keyLocation for luks1 file system it is always dm-crypt.

This commit is contained in:
Andrius Štikonas 2017-12-29 22:53:02 +00:00
parent 1802b7ad05
commit 8b9451c8d7
2 changed files with 1 additions and 2 deletions

View File

@ -188,7 +188,6 @@ public:
static bool canEncryptType(FileSystem::Type type);
void initLUKS();
virtual luks::KeyLocation keyLocation() { return luks::dmcrypt; };
bool testPassphrase(const QString& deviceNode, const QString& passphrase) const;
protected:

View File

@ -43,7 +43,7 @@ public:
FileSystem::Type type() const override;
luks::KeyLocation keyLocation() override;
luks::KeyLocation keyLocation();
};
}