diff options
author | Jeff Smith | 2017-08-09 19:02:56 -0500 |
---|---|---|
committer | Jason A. Donenfeld | 2017-08-10 15:58:24 +0200 |
commit | 86a6d358f7a6c2432fde86b9e3c5011a656f20e4 (patch) | |
tree | 0f43ea3514fba419d5a5d99cf731f96daa2765c0 /ui-diff.c | |
parent | 3d33b46df24d4dee140d0aafb1eba5fffa314cf0 (diff) | |
download | cgit-86a6d358f7a6c2432fde86b9e3c5011a656f20e4.tar.gz cgit-86a6d358f7a6c2432fde86b9e3c5011a656f20e4.tar.bz2 cgit-86a6d358f7a6c2432fde86b9e3c5011a656f20e4.zip |
git: update to v2.14
Numerous changes were made to git functions to use an object_id
structure rather than sending sha1 hashes as raw unsigned character
arrays. The functions that affect cgit are: parse_object,
lookup_commit_reference, lookup_tag, lookup_tree, parse_tree_indirect,
diff_root_tree_sha1, diff_tree_sha1, and format_display_notes.
Commit b2141fc (config: don't include config.h by default) made it
necessary to that config.h be explicitly included when needed.
Commit 07a3d41 (grep: remove regflags from the public grep_opt API)
removed one way of specifying the ignore-case grep option.
Signed-off-by: Jeff Smith <whydoubt@gmail.com>
Diffstat (limited to 'ui-diff.c')
-rw-r--r-- | ui-diff.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -385,7 +385,7 @@ void cgit_print_diff(const char *new_rev, const char *old_rev, | |||
385 | const char *prefix, int show_ctrls, int raw) | 385 | const char *prefix, int show_ctrls, int raw) |
386 | { | 386 | { |
387 | struct commit *commit, *commit2; | 387 | struct commit *commit, *commit2; |
388 | const unsigned char *old_tree_sha1, *new_tree_sha1; | 388 | const struct object_id *old_tree_oid, *new_tree_oid; |
389 | diff_type difftype; | 389 | diff_type difftype; |
390 | 390 | ||
391 | /* | 391 | /* |
@@ -407,13 +407,13 @@ void cgit_print_diff(const char *new_rev, const char *old_rev, | |||
407 | "Bad object name: %s", new_rev); | 407 | "Bad object name: %s", new_rev); |
408 | return; | 408 | return; |
409 | } | 409 | } |
410 | commit = lookup_commit_reference(new_rev_oid->hash); | 410 | commit = lookup_commit_reference(new_rev_oid); |
411 | if (!commit || parse_commit(commit)) { | 411 | if (!commit || parse_commit(commit)) { |
412 | cgit_print_error_page(404, "Not found", | 412 | cgit_print_error_page(404, "Not found", |
413 | "Bad commit: %s", oid_to_hex(new_rev_oid)); | 413 | "Bad commit: %s", oid_to_hex(new_rev_oid)); |
414 | return; | 414 | return; |
415 | } | 415 | } |
416 | new_tree_sha1 = commit->tree->object.oid.hash; | 416 | new_tree_oid = &commit->tree->object.oid; |
417 | 417 | ||
418 | if (old_rev) { | 418 | if (old_rev) { |
419 | if (get_oid(old_rev, old_rev_oid)) { | 419 | if (get_oid(old_rev, old_rev_oid)) { |
@@ -428,15 +428,15 @@ void cgit_print_diff(const char *new_rev, const char *old_rev, | |||
428 | } | 428 | } |
429 | 429 | ||
430 | if (!is_null_oid(old_rev_oid)) { | 430 | if (!is_null_oid(old_rev_oid)) { |
431 | commit2 = lookup_commit_reference(old_rev_oid->hash); | 431 | commit2 = lookup_commit_reference(old_rev_oid); |
432 | if (!commit2 || parse_commit(commit2)) { | 432 | if (!commit2 || parse_commit(commit2)) { |
433 | cgit_print_error_page(404, "Not found", | 433 | cgit_print_error_page(404, "Not found", |
434 | "Bad commit: %s", oid_to_hex(old_rev_oid)); | 434 | "Bad commit: %s", oid_to_hex(old_rev_oid)); |
435 | return; | 435 | return; |
436 | } | 436 | } |
437 | old_tree_sha1 = commit2->tree->object.oid.hash; | 437 | old_tree_oid = &commit2->tree->object.oid; |
438 | } else { | 438 | } else { |
439 | old_tree_sha1 = NULL; | 439 | old_tree_oid = NULL; |
440 | } | 440 | } |
441 | 441 | ||
442 | if (raw) { | 442 | if (raw) { |
@@ -449,11 +449,11 @@ void cgit_print_diff(const char *new_rev, const char *old_rev, | |||
449 | 449 | ||
450 | ctx.page.mimetype = "text/plain"; | 450 | ctx.page.mimetype = "text/plain"; |
451 | cgit_print_http_headers(); | 451 | cgit_print_http_headers(); |
452 | if (old_tree_sha1) { | 452 | if (old_tree_oid) { |
453 | diff_tree_sha1(old_tree_sha1, new_tree_sha1, "", | 453 | diff_tree_oid(old_tree_oid, new_tree_oid, "", |
454 | &diffopt); | 454 | &diffopt); |
455 | } else { | 455 | } else { |
456 | diff_root_tree_sha1(new_tree_sha1, "", &diffopt); | 456 | diff_root_tree_oid(new_tree_oid, "", &diffopt); |
457 | } | 457 | } |
458 | diffcore_std(&diffopt); | 458 | diffcore_std(&diffopt); |
459 | diff_flush(&diffopt); | 459 | diff_flush(&diffopt); |