projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f865a2a
)
Sparse-directory safety fix.
author
Junio C Hamano
<junkio@cox.net>
Sun, 16 Oct 2005 21:09:50 +0000
(14:09 -0700)
committer
Junio 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
patch
|
blob
|
history
diff --git
a/prune-packed.c
b/prune-packed.c
index
73f0f3a
..
1e0fc0c
100644
(file)
--- a/
prune-packed.c
+++ b/
prune-packed.c
@@
-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);
}