From fba20b429a45a682796214140a7e92fac52a3dbe Mon Sep 17 00:00:00 2001 From: Jakub Narebski Date: Mon, 28 Aug 2006 14:48:13 +0200 Subject: [PATCH] gitweb: git_print_log: signoff line is non-empty line This correct minor error in git_print_log that didn't add final empty line when requested, if commit log ended with signoff. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- gitweb/gitweb.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 6d53c8b956..24c2fe2a1b 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1407,6 +1407,7 @@ sub git_print_log ($;%) { foreach my $line (@$log) { if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) { $signoff = 1; + $empty = 0; if (! $opts{'-remove_signoff'}) { print "" . esc_html($line) . "
\n"; next; -- 2.11.4.GIT