aboutsummaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2013-05-28 15:56:22 -0700
committerRuss Allbery <rra@stanford.edu>2013-05-28 15:57:10 -0700
commit6a2db85e910c5f2a0b3bab3c61e60ddffd606dd6 (patch)
tree109bbae2321bd69adaba612e340c38007e10155d /perl
parentce8311fb488bb696e61ac0364be599ef9fe95110 (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')
-rw-r--r--perl/Wallet/ACL/LDAP/Attribute.pm3
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);