diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-05-24 10:28:31 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-05-24 10:31:02 -0400 |
commit | be3875cda2c45d8cd057c00e0bcc16bef9067d90 (patch) | |
tree | 1bf9ca9e9915ba60a2cb744ead1291f3a09a579f /changes | |
parent | 87134db57cc7cbbd801e5992ce6ca6a71e2ebfc8 (diff) | |
download | tor-be3875cda2c45d8cd057c00e0bcc16bef9067d90.tar.gz tor-be3875cda2c45d8cd057c00e0bcc16bef9067d90.zip |
Make sure that libscrypt_scrypt actually exists before using it.
Previously, if the header was present, we'd proceed even if the
function wasn't there.
Easy fix for bug 19161. A better fix would involve trying harder to
find libscrypt_scrypt.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug19161 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug19161 b/changes/bug19161 new file mode 100644 index 0000000000..78c2165308 --- /dev/null +++ b/changes/bug19161 @@ -0,0 +1,3 @@ + o Minor bugfixes (compilation): + - When libscrypt.h is found, but no libscrypt library can be linked, + treat libscrypt as absent. Fixes bug 19161; bugfix on 0.2.6.1-alpha. |