Get default fsuid and fsgid from getuid and getgid

This commit is contained in:
wbaumann
2012-01-15 21:16:39 +00:00
parent af0e0b57c7
commit 24bdeb9e65
2 changed files with 4 additions and 2 deletions

View File

@ -1668,8 +1668,8 @@ get_options(dav_args *args, char *option)
} else {
args->mopts = DAV_MOPTS;
}
args->fsuid = args->uid;
args->fsgid = args->gid;
args->fsuid = getuid();
args->fsgid = getgid();
int so;