]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-diff.c
Change commit-view to expect h parameter, not id
[ps-cgit] / ui-diff.c
index 7ec5701a4ea668990572b3088cd004f7d2dfc7bd..999b6f39f9f2aced54ecb3622ee5db211559343c 100644 (file)
--- 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/");