diff options
author | Steven Danneman <steven.danneman@isilon.com> | 2008-11-30 16:26:10 -0800 |
---|---|---|
committer | Steven Danneman <steven.danneman@isilon.com> | 2008-11-30 21:04:19 -0800 |
commit | 7bd7846df7a28b9a066fd4d862de0e4d81aadb86 (patch) | |
tree | 98434cc58e857f495cdd71cdb8751949c0421c3c /source3/smbd | |
parent | 0744c32678da3757d5e16802e4c153bae72b961a (diff) | |
download | samba-7bd7846df7a28b9a066fd4d862de0e4d81aadb86.tar.gz samba-7bd7846df7a28b9a066fd4d862de0e4d81aadb86.tar.bz2 samba-7bd7846df7a28b9a066fd4d862de0e4d81aadb86.zip |
Make nt4_compatible_acls() non-static for use by VFS ACL modules.
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/posix_acls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index 0529d2765e..97fd3b2bbe 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -870,7 +870,7 @@ static void merge_aces( canon_ace **pp_list_head ) Check if we need to return NT4.x compatible ACL entries. ****************************************************************************/ -static bool nt4_compatible_acls(void) +bool nt4_compatible_acls(void) { int compat = lp_acl_compatibility(); |