summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2016-11-06 18:20:45 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2016-11-06 18:20:45 +0000
commit00be23b629b1a1dd04cfa1c9d10a778d30d904b6 (patch)
tree84f9823af4c0a1ae9417e3ec010c842546ec3ae8 /dgit
parent1a393c8a93e550d1e820e7d8235812899d56c224 (diff)
dgit: parsecontrol: Support $allowsigned (nfc)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit4
1 files changed, 2 insertions, 2 deletions
diff --git a/dgit b/dgit
index 8264f3e..bdd6841 100755
--- a/dgit
+++ b/dgit
@@ -923,10 +923,10 @@ sub parsecontrolfh ($$;$) {
}
sub parsecontrol {
- my ($file, $desc) = @_;
+ my ($file, $desc, $allowsigned) = @_;
my $fh = new IO::Handle;
open $fh, '<', $file or die "$file: $!";
- my $c = parsecontrolfh($fh,$desc);
+ my $c = parsecontrolfh($fh,$desc,$allowsigned);
$fh->error and die $!;
close $fh;
return $c;