fix lost gw_gen_commit_msg_header in gw_blame
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;
}