This patch fixes an obvious typo whose consequence is rather
disastrous in the file creation mode. Relative to Linus HEAD
85dd8bdfbbc6b1431230ebadc7e0af2ca94fed9f.
Signed-off-by: Junio C Hamano <[EMAIL PROTECTED]>
---
checkout-cache.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
checkout-cache.c: 3b4f2644861bbd74713c51ef8e612d2fc84941d3
--- checkout-cache.c
+++ checkout-cache.c 2005-04-17 00:55:34.000000000 -0700
@@ -54,7 +54,7 @@
{
int fd;
- mode = (mode & 0100) ? 777 : 666;
+ mode = (mode & 0100) ? 0777 : 0666;
fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
if (fd < 0) {
if (errno == ENOENT) {
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html