chiark / gitweb /
Dgit.pm: reflog_cache_lookup: Replace `confess' with `die' after exec
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 2 Oct 2018 12:31:16 +0000 (13:31 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 2 Oct 2018 12:40:17 +0000 (13:40 +0100)
commit9e243b135e3ba9df16299a664c0fc3ff7e138349
tree50829f4a2811dea45cc51673ab4060ff36f85c46
parentb6e890bca43290a8fd54cb7dcc1958dab7f17f4e
Dgit.pm: reflog_cache_lookup: Replace `confess' with `die' after exec

With `confess' after `exec', perl complains

  Statement unlikely to be reached at /usr/share/perl5/Debian/Dgit.pm line 770.
  (Maybe you meant system() when you said exec()?)

The error message's suggestion is not right here - what is wrong is
that confess is not really appropriate in the child in this way.

Replace it with die, using a better error string.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Debian/Dgit.pm