about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-05-15 09:27:27 +0200
committerLars Hjemli <hjemli@gmail.com>2007-05-15 09:27:27 +0200
commitc94afaacf4f996e3c983bcc150a2bacde2b00f20 (patch)
tree44cd81246b5f90f10da90d7186b6f24e9156d93c
parentUse tables and css to create the diffstat graph, fix scaling (diff)
downloadcgit-pink-c94afaacf4f996e3c983bcc150a2bacde2b00f20.tar.gz
cgit-pink-c94afaacf4f996e3c983bcc150a2bacde2b00f20.zip
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>
-rw-r--r--ui-diff.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui-diff.c b/ui-diff.c
index 7ec5701..999b6f3 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -35,7 +35,10 @@ static void header(unsigned char *sha1, char *path1,
 		   unsigned char *sha2, char *path2)
 {
 	char *abbrev1, *abbrev2;
-
+	if (is_null_sha1(sha1))
+		path1 = "dev/null";
+	if (is_null_sha1(sha2))
+		path2 = "dev/null";
 	html("<tr><td>");
 	html("<div class='head'>");
 	html("diff --git a/");