Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGianfranco Costamagna <costamagnagianfranco@yahoo.it>2017-06-28 15:58:29 +0300
committerGianfranco Costamagna <costamagnagianfranco@yahoo.it>2017-06-28 16:13:57 +0300
commit640b09c6b23a5c53776b503ea4f9e066c063b515 (patch)
tree1f6a2150a0040dad9608c9d0c6b789639225a23f /src/core/PasswordGenerator.cpp
parent079e383319ffb95b804610525012c1d3e7f5ea0e (diff)
Add code to detect a system library for zxcvbn, with fallback to the embedded one in case it is not found
Diffstat (limited to 'src/core/PasswordGenerator.cpp')
-rw-r--r--src/core/PasswordGenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/PasswordGenerator.cpp b/src/core/PasswordGenerator.cpp
index cdff204a0..21aa590e0 100644
--- a/src/core/PasswordGenerator.cpp
+++ b/src/core/PasswordGenerator.cpp
@@ -19,7 +19,7 @@
#include "PasswordGenerator.h"
#include "crypto/Random.h"
-#include "zxcvbn/zxcvbn.h"
+#include <zxcvbn.h>
PasswordGenerator::PasswordGenerator()
: m_length(0)