Skip to content

Commit

Permalink
[backend] fix spurious next statement in signer
Browse files Browse the repository at this point in the history
  • Loading branch information
mlschroe committed Jan 29, 2013
1 parent 06aad11 commit aa69155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bs_signer
Expand Up @@ -351,7 +351,7 @@ sub signjob {
'acceptsubdirs' => 1,
'cpiopostfile' => sub {
my ($par, $ent) = @_;
next unless ($ent->{'mode'} & 0xf000) == 0x8000; # files only
return unless ($ent->{'mode'} & 0xf000) == 0x8000; # files only
my $sig = signfilter($ent->{'data'}, @signargs, '-O', @opensslsignargs);
$ent->{'data'} = ''; # free mem
push @res, { 'name' => "$ent->{'name'}.sig", 'data' => $sig };
Expand Down

0 comments on commit aa69155

Please sign in to comment.