Sparse-directory safety fix.
authorJunio C Hamano <junkio@cox.net>
Sun, 16 Oct 2005 21:09:50 +0000 (14:09 -0700)
committerJunio C Hamano <junkio@cox.net>
Sun, 16 Oct 2005 21:09:50 +0000 (14:09 -0700)
This will be removed when merging the second phase of Linus' "Create
object subdirectories on demand" change anyway, but the code to
recreate the empty .git/objects/??/ directory was confused.

Signed-off-by: Junio C Hamano <junkio@cox.net>
prune-packed.c

index 73f0f3a..1e0fc0c 100644 (file)
@@ -27,7 +27,7 @@ static void prune_dir(int i, DIR *dir, char *pathname, int len)
                        error("unable to unlink %s", pathname);
        }
        pathname[len] = 0;
-       if (rmdir(pathname))
+       if (!rmdir(pathname))
                mkdir(pathname, 0777);
 }