X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/f4f1339fe62fb1a28c147567195a86dd99485e25..e651cb0d2dc2dbd458c51cdba8ae56e8629348cc:/ui-diff.c
diff --git a/ui-diff.c b/ui-diff.c
index 3ed0a46..4695e3a 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -37,8 +37,7 @@ static void header(unsigned char *sha1, char *path1, int mode1,
char *abbrev1, *abbrev2;
int subproject;
- subproject = (S_ISDIRLNK(mode1) || S_ISDIRLNK(mode2));
- html("
");
+ subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2));
html("");
html("diff --git a/");
html_txt(path1);
@@ -79,10 +78,10 @@ static void filepair_cb(struct diff_filepair *pair)
{
header(pair->one->sha1, pair->one->path, pair->one->mode,
pair->two->sha1, pair->two->path, pair->two->mode);
- if (S_ISDIRLNK(pair->one->mode) || S_ISDIRLNK(pair->two->mode)) {
- if (S_ISDIRLNK(pair->one->mode))
+ if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) {
+ if (S_ISGITLINK(pair->one->mode))
print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52);
- if (S_ISDIRLNK(pair->two->mode))
+ if (S_ISGITLINK(pair->two->mode))
print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52);
return;
}
@@ -102,8 +101,10 @@ void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex,
commit = lookup_commit_reference(sha1);
if (commit && !parse_commit(commit)) {
html(" ");
+ html("| ");
cgit_diff_commit(commit, filepair_cb);
- html(" | ");
+ html(" |
");
+ html("");
}
return;
}
@@ -127,7 +128,7 @@ void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex,
header(sha1, path, 0644, sha2, path, 0644);
if (cgit_diff_files(sha1, sha2, print_line))
cgit_print_error("Error running diff");
- html("");
+ html("");
break;
case OBJ_TREE:
cgit_diff_tree(sha1, sha2, filepair_cb);
@@ -137,5 +138,5 @@ void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex,
typename(type)));
break;
}
- html("");
+ html("");
}