diff options
author | Russ Allbery <rra@stanford.edu> | 2013-05-28 15:56:22 -0700 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2013-05-28 15:57:10 -0700 |
commit | 6a2db85e910c5f2a0b3bab3c61e60ddffd606dd6 (patch) | |
tree | 109bbae2321bd69adaba612e340c38007e10155d /perl/Wallet | |
parent | ce8311fb488bb696e61ac0364be599ef9fe95110 (diff) |
Add use Wallet::Config to Wallet::ACL::LDAP::Attribute
Normally this will already be loaded, but since we use it directly,
make sure it is loaded.
Change-Id: Ibc4ca874b659f316268957cbf77ead9d49bc3ca0
Reviewed-on: https://gerrit.stanford.edu/1205
Reviewed-by: Russ Allbery <rra@stanford.edu>
Tested-by: Russ Allbery <rra@stanford.edu>
Diffstat (limited to 'perl/Wallet')
-rw-r--r-- | perl/Wallet/ACL/LDAP/Attribute.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl/Wallet/ACL/LDAP/Attribute.pm b/perl/Wallet/ACL/LDAP/Attribute.pm index 802c710..31001ea 100644 --- a/perl/Wallet/ACL/LDAP/Attribute.pm +++ b/perl/Wallet/ACL/LDAP/Attribute.pm @@ -1,7 +1,7 @@ # Wallet::ACL::LDAP::Attribute -- Wallet LDAP attribute ACL verifier. # # Written by Russ Allbery -# Copyright 2012 +# Copyright 2012, 2013 # The Board of Trustees of the Leland Stanford Junior University # # See LICENSE for licensing terms. @@ -19,6 +19,7 @@ use vars qw(@ISA $VERSION); use Authen::SASL (); use Net::LDAP qw(LDAP_COMPARE_TRUE); use Wallet::ACL::Base; +use Wallet::Config; @ISA = qw(Wallet::ACL::Base); |