Skip to content

Commit

Permalink
Fix perl warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Apr 14, 2020
1 parent 18e91a6 commit 0aefbac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualmin-registrar-lib.pl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
sub list_registrar_accounts
{
my @rv;
opendir(DIR, $registrar_accounts_dir);
opendir(DIR, $registrar_accounts_dir) || return ();
foreach my $f (readdir(DIR)) {
next if ($f eq "." || $f eq "..");
my %account;
Expand Down

0 comments on commit 0aefbac

Please sign in to comment.