Hi Stephan, On Thu, Dec 8, 2016 at 5:51 AM, Stephan Beyer <s-beyer@xxxxxxx> wrote: > diff --git a/builtin/am.c b/builtin/am.c > index 6981f42ce..7cf40e6f2 100644 > --- a/builtin/am.c > +++ b/builtin/am.c > @@ -2124,7 +2124,7 @@ static int safe_to_abort(const struct am_state *state) > > if (read_state_file(&sb, state, "abort-safety", 1) > 0) { > if (get_oid_hex(sb.buf, &abort_safety)) > - die(_("could not parse %s"), am_path(state, "abort_safety")); > + die(_("could not parse %s"), am_path(state, "abort-safety")); Ah, this is obviously correct. Sorry for the oversight. > } else > oidclr(&abort_safety); > > -- > 2.11.0.27.g4eed97c Thanks, Paul