X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=diff-tree.c;h=6f8dc2024c289a92fe81014511a8377364340783;hb=000182eacf99cde27d5916aa415921924b82972c;hp=3881c23ca37a86c41ec12b2d5c4713ab01cc9d82;hpb=0e3994fa97e9876b571531444b97ae6e63fd744d;p=git.git diff --git a/diff-tree.c b/diff-tree.c index 3881c23c..6f8dc202 100644 --- a/diff-tree.c +++ b/diff-tree.c @@ -19,6 +19,7 @@ static int diff_break_opt = -1; static const char *orderfile = NULL; static const char *header = NULL; static const char *header_prefix = ""; +static enum cmit_fmt commit_format = CMIT_FMT_RAW; // What paths are we interested in? static int nr_paths = 0; @@ -321,7 +322,7 @@ static char *generate_header(const char *commit, const char *parent, const char offset = sprintf(this_header, "%s%s (from %s)\n", header_prefix, commit, parent); if (verbose_header) { - offset += pretty_print_commit(msg, len, this_header + offset, sizeof(this_header) - offset); + offset += pretty_print_commit(commit_format, msg, len, this_header + offset, sizeof(this_header) - offset); this_header[offset++] = '\n'; this_header[offset++] = 0; }