summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2015-06-29 02:02:26 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2015-06-29 02:02:26 +0100
commit5016ae374676ed5dbf594a4fde97ac5603880e4a (patch)
tree9e8aa3bcdf572314721dc974a5810143f536951b /dgit
parent76cbbc78a07e44b4c917bbaa93bf7cd602387082 (diff)
Fix an undef reference in error message processing when quilt fixup linearisation fails.
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit2
1 files changed, 1 insertions, 1 deletions
diff --git a/dgit b/dgit
index 31b5bf4..0d558c0 100755
--- a/dgit
+++ b/dgit
@@ -2270,7 +2270,7 @@ sub quiltify ($$) {
my $s = $abbrev->($notp);
my $c = $notp->{Child};
$s .= "..".$abbrev->($c) if $c;
- $s .= ": ".$c->{Whynot};
+ $s .= ": ".$notp->{Whynot};
return $s;
};
if ($quilt_mode eq 'linear') {