Permit filesystem group to be root

This commit is contained in:
Jamie Nguyen
2015-11-13 14:17:02 +00:00
committed by Nick Mathewson
parent d68b7fd442
commit 08c7ceb5df
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -2143,7 +2143,7 @@ check_private_dir(const char *dirname, cpd_check_t check,
return -1;
}
if ( (check & (CPD_GROUP_OK|CPD_GROUP_READ))
&& (st.st_gid != running_gid) ) {
&& (st.st_gid != running_gid) && (st.st_gid != 0)) {
struct group *gr;
char *process_groupname = NULL;
gr = getgrgid(running_gid);