summaryrefslogtreecommitdiff
path: root/perl/Wallet/Object/Keytab.pm
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2010-01-19 22:48:01 -0800
committerRuss Allbery <rra@stanford.edu>2010-01-19 22:48:01 -0800
commitd684049761db4eb88cd936c530196ea89a524c07 (patch)
treea7be768921000e125b7b0989f75739509c3bde6b /perl/Wallet/Object/Keytab.pm
parentb7aedd9b7290d51dc5e46c4b123cd5f0f080f9c7 (diff)
Coding style fixes for Perl wallet code
Strip trailing whitespace, convert tabs to spaces, add newlines to exceptions, and remove a few stray blank lines and a few other minor coding style oddities. Make the SQL style consistent.
Diffstat (limited to 'perl/Wallet/Object/Keytab.pm')
-rw-r--r--perl/Wallet/Object/Keytab.pm13
1 files changed, 6 insertions, 7 deletions
diff --git a/perl/Wallet/Object/Keytab.pm b/perl/Wallet/Object/Keytab.pm
index b1c9d6d..a361599 100644
--- a/perl/Wallet/Object/Keytab.pm
+++ b/perl/Wallet/Object/Keytab.pm
@@ -1,7 +1,7 @@
# Wallet::Object::Keytab -- Keytab object implementation for the wallet.
#
# Written by Russ Allbery <rra@stanford.edu>
-# Copyright 2007, 2008 Board of Trustees, Leland Stanford Jr. University
+# Copyright 2007, 2008, 2009 Board of Trustees, Leland Stanford Jr. University
#
# See LICENSE for licensing terms.
@@ -477,15 +477,14 @@ sub new {
# caller.
sub create {
my ($class, $type, $name, $dbh, $creator, $host, $time) = @_;
- my $self = {
- dbh => $dbh,
- kadmin => undef,
+ my $self = {
+ dbh => $dbh,
+ kadmin => undef,
};
bless $self, $class;
my $kadmin = Wallet::Kadmin->new ();
$self->{kadmin} = $kadmin;
$kadmin->addprinc ($name);
-
$self = $class->SUPER::create ($type, $name, $dbh, $creator, $host, $time);
$self->{kadmin} = $kadmin;
return $self;
@@ -556,8 +555,8 @@ sub get {
my $kadmin = $self->{kadmin};
my $retval = eval { $kadmin->ktadd ($self->{name}, $file, @enctypes) };
if ($@) {
- $self->error ($@);
- return;
+ $self->error ($@);
+ return;
}
return unless $retval;
local *KEYTAB;