Commit f146a4ea2f11564cec8e9a3446ff00f8d8e7fb83

Tracey Emery 2020-02-03T15:14:53

fix lost gw_gen_commit_msg_header in gw_blame

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/gotweb/gotweb.c b/gotweb/gotweb.c
index 4e7b4a7..e60b6ec 100644
--- a/gotweb/gotweb.c
+++ b/gotweb/gotweb.c
@@ -362,7 +362,7 @@ gw_blame(struct gw_trans *gw_trans)
 	if (error)
 		goto done;
 	if (asprintf(&blame_html_disp, blame_header, age_html,
-	    escaped_commit_msg, blame_html) == -1) {
+	    gw_gen_commit_msg_header(escaped_commit_msg), blame_html) == -1) {
 		error = got_error_from_errno("asprintf");
 		goto done;
 	}