Diffstat (limited to 'ui-patch.c')
| -rw-r--r-- | ui-patch.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -77,7 +77,7 @@ static void filepair_cb(struct diff_filepair *pair) html("Binary files differ\n"); } -void cgit_print_patch(char *hex, const char *prefix) +void cgit_print_patch(char *hex) { struct commit *commit; struct commitinfo *info; @@ -122,9 +122,7 @@ void cgit_print_patch(char *hex, const char *prefix) html("\n"); } html("---\n"); - if (prefix) - htmlf("(limited to '%s')\n\n", prefix); - cgit_diff_tree(old_sha1, sha1, filepair_cb, prefix); + cgit_diff_tree(old_sha1, sha1, filepair_cb, NULL); html("--\n"); htmlf("cgit %s\n", CGIT_VERSION); cgit_free_commitinfo(info); |