fix newline after header - stagit-gopher - A git gopher frontend. (mirror) HTML git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/ DIR Log DIR Files DIR Refs DIR Tags DIR README DIR LICENSE --- DIR commit 200ccad8b566c3705f3d3e5dd7d5456be85e6900 DIR parent 444e41b315925181f3ead6f2c3dd1354475e90e3 HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Tue, 5 Jan 2016 21:03:39 +0100 fix newline after header Diffstat: M stagit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/stagit.c b/stagit.c @@ -410,7 +410,7 @@ printshowfile(struct commitinfo *ci) break; fputs("<span class=\"h\">", fp); - xmlencode(fp, hunk->header, strcspn(hunk->header, "\n")); + xmlencode(fp, hunk->header, hunk->header_len); fputs("</span>", fp); for (k = 0; ; k++) {