summaryrefslogtreecommitdiff
path: root/FS/FS/Password_Mixin.pm
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-11-13 16:42:40 -0800
committerMark Wells <mark@freeside.biz>2015-11-14 11:03:22 -0800
commit06ba67f2db8e73955cd98e25927c4c6751539426 (patch)
treed5a615f3cfe2a097dc4feb6b15e28fd6e61ecffc /FS/FS/Password_Mixin.pm
parent087c45b52363e519320eef20482ca94a7a8fb5f0 (diff)
remove ugly workaround for Params::Classify bug, #32456
Diffstat (limited to 'FS/FS/Password_Mixin.pm')
-rw-r--r--FS/FS/Password_Mixin.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Password_Mixin.pm b/FS/FS/Password_Mixin.pm
index af4c5e2b7..c4549c727 100644
--- a/FS/FS/Password_Mixin.pm
+++ b/FS/FS/Password_Mixin.pm
@@ -4,7 +4,7 @@ use FS::Record qw(qsearch);
use FS::Conf;
use FS::password_history;
use Authen::Passphrase;
-# use Authen::Passphrase::BlowfishCrypt; # ha ha, no.
+use Authen::Passphrase::BlowfishCrypt;
# https://rt.cpan.org/Ticket/Display.html?id=72743
our $DEBUG = 1;
@@ -12,7 +12,7 @@ our $conf;
FS::UID->install_callback( sub {
$conf = FS::Conf->new;
# this is safe
- eval "use Authen::Passphrase::BlowfishCrypt;";
+ #eval "use Authen::Passphrase::BlowfishCrypt;";
});
our $me = '[' . __PACKAGE__ . ']';