1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-26 21:57:41 +03:00

Convert samba_private_attr_name() to a public function

Signed-off-by: Ralph Boehme <rb@sernet.de>
Reviewed-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Ralph Boehme 2014-05-21 11:52:27 +02:00 committed by Michael Adam
parent 3defbe2734
commit f03e8b12c6
2 changed files with 2 additions and 1 deletions

View File

@ -1056,6 +1056,7 @@ NTSTATUS check_access(connection_struct *conn,
uint32_t access_mask); uint32_t access_mask);
uint64_t smb_roundup(connection_struct *conn, uint64_t val); uint64_t smb_roundup(connection_struct *conn, uint64_t val);
uint64_t get_FileIndex(connection_struct *conn, const SMB_STRUCT_STAT *psbuf); uint64_t get_FileIndex(connection_struct *conn, const SMB_STRUCT_STAT *psbuf);
bool samba_private_attr_name(const char *unix_ea_name);
NTSTATUS get_ea_value(TALLOC_CTX *mem_ctx, connection_struct *conn, NTSTATUS get_ea_value(TALLOC_CTX *mem_ctx, connection_struct *conn,
files_struct *fsp, const char *fname, files_struct *fsp, const char *fname,
const char *ea_name, struct ea_struct *pea); const char *ea_name, struct ea_struct *pea);

View File

@ -120,7 +120,7 @@ uint64_t get_FileIndex(connection_struct *conn, const SMB_STRUCT_STAT *psbuf)
Refuse to allow clients to overwrite our private xattrs. Refuse to allow clients to overwrite our private xattrs.
****************************************************************************/ ****************************************************************************/
static bool samba_private_attr_name(const char *unix_ea_name) bool samba_private_attr_name(const char *unix_ea_name)
{ {
static const char * const prohibited_ea_names[] = { static const char * const prohibited_ea_names[] = {
SAMBA_POSIX_INHERITANCE_EA_NAME, SAMBA_POSIX_INHERITANCE_EA_NAME,