From 88c447e8f467c6b2ca09ad91f3fa1d1d662dd04d Mon Sep 17 00:00:00 2001 From: Alex Riesen Date: Wed, 4 Jul 2007 12:33:46 +0200 Subject: [PATCH] Handle missing prefix for "Subject:" as if no prefix given Signed-off-by: Junio C Hamano --- log-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log-tree.c b/log-tree.c index ced3f332ef..8624d5a39c 100644 --- a/log-tree.c +++ b/log-tree.c @@ -200,7 +200,7 @@ void show_log(struct rev_info *opt, const char *sep) digits_in_number(opt->total), opt->nr, opt->total); subject = buffer; - } else if (opt->total == 0) { + } else if (opt->total == 0 && opt->subject_prefix && *opt->subject_prefix) { static char buffer[256]; snprintf(buffer, sizeof(buffer), "Subject: [%s] ", -- 2.11.4.GIT