mirror of
https://git.zx2c4.com/cgit
synced 2024-11-23 00:48:42 +00:00
ui-diff: show /dev/null as filename for add/delete
The diff headers showed an invalid filename when a patch created or deleted a file. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
e903011c44
commit
c94afaacf4
@ -35,7 +35,10 @@ static void header(unsigned char *sha1, char *path1,
|
|||||||
unsigned char *sha2, char *path2)
|
unsigned char *sha2, char *path2)
|
||||||
{
|
{
|
||||||
char *abbrev1, *abbrev2;
|
char *abbrev1, *abbrev2;
|
||||||
|
if (is_null_sha1(sha1))
|
||||||
|
path1 = "dev/null";
|
||||||
|
if (is_null_sha1(sha2))
|
||||||
|
path2 = "dev/null";
|
||||||
html("<tr><td>");
|
html("<tr><td>");
|
||||||
html("<div class='head'>");
|
html("<div class='head'>");
|
||||||
html("diff --git a/");
|
html("diff --git a/");
|
||||||
|
Loading…
Reference in New Issue
Block a user