Displaying 3 results from an estimated 3 matches for "or_bit".
Did you mean:
orbit
2010 Aug 10
1
samba posix_acls.c file and dir permissions
...the READ access for
the file and READ and WRITE access for directory ?
----------
case S_IRUSR:
/* Ensure owner has read access. */
pace->perms |= S_IRUSR;
if (is_directory)
pace->perms |= (S_IWUSR|S_IXUSR);
and_bits = unix_perms_to_acl_perms(and_bits, S_IRUSR,
S_IWUSR, S_IXUSR);
or_bits = unix_perms_to_acl_perms(or_bits, S_IRUSR,
S_IWUSR, S_IXUSR);
-----------
2) I have connected a samba share from the device onto my windows xp
machine.. when I tried modify subfolder owner write permissions , it is
simply ignoring that and setting the write permission again. ofcourse
acl are en...
2010 Jul 31
3
Alternative to Samba by Link***?
Hello
I vaguely remember reading an article months ago about some fork or
altnernative provider of Samba called something like Link***.
The Wikipedia article on Samba only mentions TNG.
http://en.wikipedia.org/wiki/Samba_%28software%29
Does someone know what I'm refering to and could tell me more?
Thank you.
2012 Jul 05
0
acl_tdb failed to convert file acl to posix permisions
...e_t *posix_perms)
{
int snum = SNUM(fsp->conn);
size_t ace_count = count_canon_ace_list(file_ace_list);
canon_ace *ace_p;
canon_ace *owner_ace = NULL;
canon_ace *group_ace = NULL;
canon_ace *other_ace = NULL;
mode_t and_bits;
mode_t or_bits;
if (ace_count != 3) {
DEBUG(3,("convert_canon_ace_to_posix_perms: Too many ACE "
"entries for file %s to convert to posix perms.\n",
fsp_str_dbg(fsp)));
return False;
}
So it se...