[PATCH] Trivial typofix in file creation mode.
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:41:52
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:41:52
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 <redacted> --- 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) {