Reflog message is primarily about easier identification, and leaving truncated entry is much better than dying. Signed-off-by: Junio C Hamano <junkio@xxxxxxx> --- builtin-fetch--tool.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/builtin-fetch--tool.c b/builtin-fetch--tool.c index 3145c01..1b04881 100644 --- a/builtin-fetch--tool.c +++ b/builtin-fetch--tool.c @@ -42,9 +42,7 @@ static int update_ref(const char *action, if (!rla) rla = "(reflog update)"; - len = snprintf(msg, sizeof(msg), "%s: %s", rla, action); - if (sizeof(msg) <= len) - die("insanely long action"); + snprintf(msg, sizeof(msg), "%s: %s", rla, action); lock = lock_any_ref_for_update(refname, oldval); if (!lock) return 1; - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html