diff options
| author | Russ Allbery <rra@stanford.edu> | 2007-12-07 00:32:12 +0000 |
|---|---|---|
| committer | Russ Allbery <rra@stanford.edu> | 2007-12-07 00:32:12 +0000 |
| commit | 2db38a1c391dbad2ea503d4894a837ba669968f7 (patch) | |
| tree | 3a2ea98c04aec780ffdc277fca9d53139a35eda7 /perl/Wallet/ACL.pm | |
| parent | 46250410d16ea06542a10bc4bec9fd859d38effb (diff) | |
Get rid of more return undefs.
Diffstat (limited to 'perl/Wallet/ACL.pm')
| -rw-r--r-- | perl/Wallet/ACL.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Wallet/ACL.pm b/perl/Wallet/ACL.pm index 7830523..dab5581 100644 --- a/perl/Wallet/ACL.pm +++ b/perl/Wallet/ACL.pm @@ -405,7 +405,7 @@ sub check { return; } my @entries = $self->list; - return undef if (not @entries and $self->error); + return if (not @entries and $self->error); my %verifier; $self->{check_errors} = []; for my $entry (@entries) { |
