diff options
author | Mathieu Parent <math.parent@gmail.com> | 2011-11-20 19:48:57 (GMT) |
---|---|---|
committer | Mathieu Parent <math.parent@gmail.com> | 2011-11-20 19:48:57 (GMT) |
commit | cf9573b69cbdb8c36da4355cfe2066ef2b13332a (patch) | |
tree | 79e4e66f0f447ab392ea20d7c8a92daf82fb4c97 | |
parent | f5870a8fc5068ee4c395efbee6dad4d871cb742b (diff) | |
download | perl-Kolab-cf9573b69cbdb8c36da4355cfe2066ef2b13332a.tar.gz |
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/Kolab/LDAP.pm | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2011-11-20 Mathieu Parent <math.parent@gmail.com> + + * bin/kolabpasswd.in, lib/Kolab/LDAP.pm, sbin/kolab_bootstrap.in: + + Replace Digest::SHA1 lib by Digest::SHA + (https://issues.kolab.org/show_bug.cgi?id=515). + 2010-07-17 Gunnar Wrobel <p@rdus.de> * lib/Kolab/LDAP.pm: diff --git a/lib/Kolab/LDAP.pm b/lib/Kolab/LDAP.pm index 9afb410..e3cffbc 100644 --- a/lib/Kolab/LDAP.pm +++ b/lib/Kolab/LDAP.pm @@ -37,7 +37,7 @@ use DB_File; use Kolab; use Kolab::Util; use Kolab::Cyrus; -use Digest::SHA1 qw(sha1); +use Digest::SHA qw(sha1); use MIME::Base64 qw(encode_base64); require Exporter; |