-rw-r--r-- | html.c | 2 | ||||
-rw-r--r-- | ui-diff.c | 8 | ||||
-rw-r--r-- | ui-tree.c | 4 |
3 files changed, 7 insertions, 7 deletions
@@ -160,3 +160,3 @@ void html_filemode(unsigned short mode) html("l"); - else if (S_ISDIRLNK(mode)) + else if (S_ISGITLINK(mode)) html("m"); @@ -39,3 +39,3 @@ static void header(unsigned char *sha1, char *path1, int mode1, - subproject = (S_ISDIRLNK(mode1) || S_ISDIRLNK(mode2)); + subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2)); html("<div class='head'>"); @@ -80,6 +80,6 @@ static void filepair_cb(struct diff_filepair *pair) 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); @@ -70,3 +70,3 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, type = sha1_object_info(sha1, &size); - if (type == OBJ_BAD && !S_ISDIRLNK(mode)) { + if (type == OBJ_BAD && !S_ISGITLINK(mode)) { htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", @@ -80,3 +80,3 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, html("</td><td>"); - if (S_ISDIRLNK(mode)) { + if (S_ISGITLINK(mode)) { htmlf("<a class='ls-mod' href='"); |