1
0
mirror of https://github.com/samba-team/samba.git synced 2025-05-27 17:05:51 +03:00

Rename set_sd() to set_sd_blob() - this describes what it does.

This commit is contained in:
Jeremy Allison 2012-08-29 13:23:06 -07:00
parent 02aacb17d1
commit 8c84ecef89
3 changed files with 6 additions and 6 deletions

View File

@ -831,10 +831,10 @@ static void do_nt_transact_create_pipe(connection_struct *conn,
}
/****************************************************************************
Internal fn to set security descriptors.
Internal fn to set security descriptors from a data blob.
****************************************************************************/
NTSTATUS set_sd(files_struct *fsp, uint8_t *data, uint32_t sd_len,
NTSTATUS set_sd_blob(files_struct *fsp, uint8_t *data, uint32_t sd_len,
uint32_t security_info_sent)
{
struct security_descriptor *psd = NULL;
@ -910,7 +910,7 @@ NTSTATUS set_sd(files_struct *fsp, uint8_t *data, uint32_t sd_len,
}
if (DEBUGLEVEL >= 10) {
DEBUG(10,("set_sd for file %s\n", fsp_str_dbg(fsp)));
DEBUG(10,("set_sd_blob for file %s\n", fsp_str_dbg(fsp)));
NDR_PRINT_DEBUG(security_descriptor, psd);
}
@ -2101,7 +2101,7 @@ static void call_nt_transact_set_security_desc(connection_struct *conn,
return;
}
status = set_sd(fsp, (uint8 *)data, data_count, security_info_sent);
status = set_sd_blob(fsp, (uint8 *)data, data_count, security_info_sent);
if (!NT_STATUS_IS_OK(status)) {
reply_nterror(req, status);

View File

@ -577,7 +577,7 @@ void *init_quota_handle(TALLOC_CTX *mem_ctx);
/* The following definitions come from smbd/nttrans.c */
void reply_ntcreate_and_X(struct smb_request *req);
NTSTATUS set_sd(files_struct *fsp, uint8_t *data, uint32_t sd_len,
NTSTATUS set_sd_blob(files_struct *fsp, uint8_t *data, uint32_t sd_len,
uint32_t security_info_sent);
struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size);
void reply_ntcancel(struct smb_request *req);

View File

@ -308,7 +308,7 @@ static struct tevent_req *smbd_smb2_setinfo_send(TALLOC_CTX *mem_ctx,
return tevent_req_post(req, ev);
}
status = set_sd(fsp,
status = set_sd_blob(fsp,
in_input_buffer.data,
in_input_buffer.length,
in_additional_information);