aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt1
-rw-r--r--pseudo_client.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index 347a591..827ff7a 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -11,6 +11,7 @@
* (pabigot) Don't memory-leak on checks for PSEUDO_UNLOAD, also
check the correct environment when spawning new things. (Contributed
by Peter A. Bigot).
+ * (seebs) mask 022 back in too, when restoring a database mode.
2014-05-15:
* (seebs) drop flags when calling fchmodat() to appease GNU tar.
diff --git a/pseudo_client.h b/pseudo_client.h
index 4663c09..ecb13a6 100644
--- a/pseudo_client.h
+++ b/pseudo_client.h
@@ -86,5 +86,5 @@ extern int pseudo_nosymlinkexp;
* this is a known limitation.
*/
#define PSEUDO_FS_MODE(mode, isdir) ((((mode) | S_IRUSR | S_IWUSR | ((isdir) ? S_IXUSR : 0)) & ~(S_IWGRP | S_IWOTH)) & ~(S_IWOTH | S_IWGRP))
-#define PSEUDO_DB_MODE(fs_mode, user_mode) (((fs_mode) & ~0700) | ((user_mode & 0700)))
+#define PSEUDO_DB_MODE(fs_mode, user_mode) (((fs_mode) & ~0722) | ((user_mode & 0722)))