| 1211 | } |
| 1212 | |
| 1213 | static void gen_message_id(struct rev_info *info, const char *base) |
| 1214 | { |
| 1215 | struct strbuf buf = STRBUF_INIT; |
| 1216 | strbuf_addf(&buf, "%s.%"PRItime".git.%s", base, |
| 1217 | (timestamp_t) time(NULL), |
| 1218 | git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT)); |
| 1219 | info->message_id = strbuf_detach(&buf, NULL); |
| 1220 | } |
| 1221 | |
| 1222 | static void print_signature(const char *signature, FILE *file) |
| 1223 | { |
no test coverage detected