Changes the auditlog new derectories permission to 1872

As well noticed on #1497 [by @met3or] we had an inconsistence in the
default permission value for new directories between version 2 and 3.
This commit is contained in:
Felipe Zimmerle
2017-07-25 15:06:47 -03:00
parent 337216fd87
commit 27a8abc052

View File

@@ -196,7 +196,7 @@ class AuditLog {
int m_defaultFilePermission = 0600;
int m_directoryPermission;
int m_defaultDirectoryPermission = 0766;
int m_defaultDirectoryPermission = 1872;
private:
AuditLogStatus m_status;