diff options
author | Russ Allbery <rra@stanford.edu> | 2007-08-28 20:52:10 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2007-08-28 20:52:10 +0000 |
commit | 0e0ccfe8b2497a4b3245dd60a331b4d4f14bd714 (patch) | |
tree | 59188466d8b5114a776fc206beceb4deed84338d /perl/Wallet/Object/Keytab.pm | |
parent | b3b641a12fc0d0488c10df0046eccb3182c674d6 (diff) |
Rename Wallet::Object to Wallet::Object::Base and fix some syntax errors
introduced by recent changes.
Diffstat (limited to 'perl/Wallet/Object/Keytab.pm')
-rw-r--r-- | perl/Wallet/Object/Keytab.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl/Wallet/Object/Keytab.pm b/perl/Wallet/Object/Keytab.pm index f03a29c..b10c67a 100644 --- a/perl/Wallet/Object/Keytab.pm +++ b/perl/Wallet/Object/Keytab.pm @@ -17,8 +17,9 @@ use strict; use vars qw(@ISA $VERSION); use Wallet::Config (); +use Wallet::Object::Base; -@ISA = qw(Wallet::Object); +@ISA = qw(Wallet::Object::Base); # This version should be increased on any code change to this module. Always # use two digits for the minor version with a leading zero if necessary so |