mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 07:20:11 +00:00
viced-file-readonly-fs-support-20030408
add missed curly braces so VannilaUsers don't get EACCES
This commit is contained in:
parent
2b295f4393
commit
3ab4af08ac
@ -874,13 +874,14 @@ Check_PermissionRights(Vnode *targetptr,
|
||||
} else
|
||||
#endif
|
||||
if ((targetptr->disk.type != vDirectory)
|
||||
&& (!(targetptr->disk.modeBits & OWNERWRITE)))
|
||||
&& (!(targetptr->disk.modeBits & OWNERWRITE))) {
|
||||
if (readonlyServer)
|
||||
return(VREADONLY);
|
||||
if (VanillaUser(client))
|
||||
return(EACCES);
|
||||
else osi_audit( PrivilegeEvent, 0, AUD_INT, (client ? client->ViceId : 0),
|
||||
AUD_INT, CallingRoutine, AUD_END);
|
||||
}
|
||||
}
|
||||
else { /* a status store */
|
||||
if (readonlyServer)
|
||||
|
Loading…
Reference in New Issue
Block a user