Displaying 1 result from an estimated 1 matches for "64cf87f".
Did you mean:
14fc87f
2009 Nov 25
1
[PATCH] daemon/Win32: Windows replacement for umask.
...rom: Richard Jones <rjones at redhat.com>
Date: Wed, 25 Nov 2009 14:56:42 +0000
Subject: [PATCH 5/7] daemon/Win32: Windows replacement for umask.
---
daemon/guestfsd.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c
index 64cf87f..40b3c2f 100644
--- a/daemon/guestfsd.c
+++ b/daemon/guestfsd.c
@@ -182,8 +182,16 @@ main (int argc, char *argv[])
setenv ("SHELL", "/bin/sh", 1);
setenv ("LC_ALL", "C", 1);
+#ifndef WIN32
/* We document that umask defaults to 022 (it should be thi...