mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
Renamed formal parameter fd to fnum because we're talking about SMB file
handles, not unix ones.
(This used to be commit 974790e45e
)
This commit is contained in:
parent
9c743f9b8b
commit
005582d1b5
@ -19,16 +19,13 @@
|
|||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define NO_SYSLOG
|
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
query the security descriptor for a open file
|
query the security descriptor for a open file
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
SEC_DESC *cli_query_secdesc(struct cli_state *cli,int fd, TALLOC_CTX *mem_ctx)
|
SEC_DESC *cli_query_secdesc(struct cli_state *cli, int fnum,
|
||||||
|
TALLOC_CTX *mem_ctx)
|
||||||
{
|
{
|
||||||
char param[8];
|
char param[8];
|
||||||
char *rparam=NULL, *rdata=NULL;
|
char *rparam=NULL, *rdata=NULL;
|
||||||
@ -36,7 +33,7 @@ SEC_DESC *cli_query_secdesc(struct cli_state *cli,int fd, TALLOC_CTX *mem_ctx)
|
|||||||
prs_struct pd;
|
prs_struct pd;
|
||||||
SEC_DESC *psd = NULL;
|
SEC_DESC *psd = NULL;
|
||||||
|
|
||||||
SIVAL(param, 0, fd);
|
SIVAL(param, 0, fnum);
|
||||||
SSVAL(param, 4, 0x7);
|
SSVAL(param, 4, 0x7);
|
||||||
|
|
||||||
if (!cli_send_nt_trans(cli,
|
if (!cli_send_nt_trans(cli,
|
||||||
@ -77,8 +74,8 @@ SEC_DESC *cli_query_secdesc(struct cli_state *cli,int fd, TALLOC_CTX *mem_ctx)
|
|||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
set the security descriptor for a open file
|
set the security descriptor for a open file
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
BOOL cli_set_secdesc(struct cli_state *cli,int fd, SEC_DESC *sd)
|
BOOL cli_set_secdesc(struct cli_state *cli, int fnum, SEC_DESC *sd)
|
||||||
{
|
{
|
||||||
char param[8];
|
char param[8];
|
||||||
char *rparam=NULL, *rdata=NULL;
|
char *rparam=NULL, *rdata=NULL;
|
||||||
@ -100,7 +97,7 @@ BOOL cli_set_secdesc(struct cli_state *cli,int fd, SEC_DESC *sd)
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
SIVAL(param, 0, fd);
|
SIVAL(param, 0, fnum);
|
||||||
SSVAL(param, 4, 0x7);
|
SSVAL(param, 4, 0x7);
|
||||||
|
|
||||||
if (!cli_send_nt_trans(cli,
|
if (!cli_send_nt_trans(cli,
|
||||||
|
Loading…
Reference in New Issue
Block a user