Skip to content
Snippets Groups Projects
Commit 6c98e78d authored by Sébastien Blin's avatar Sébastien Blin Committed by Yang Wang
Browse files

build: fix build on windows

isPasswordValid must return a boolean

Change-Id: I6465bfc73b08f203b2fa0b53deaf71b3406cabd6
parent 9e51a942
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ public:
virtual void syncDevices() = 0;
virtual bool isPasswordValid(const std::string& password) {};
virtual bool isPasswordValid(const std::string& password) { return false; };
dht::crypto::Identity loadIdentity(const std::string& crt_path, const std::string& key_path, const std::string& key_pwd) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment