diff options
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 5c4d63a8c1..e6fffcbcfd 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -586,12 +586,12 @@ static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *fin afname, nt_errstr(status))); } else { struct security_descriptor *sd = NULL; - sd = cli_query_secdesc_old(cli_state, fnum, ctx); - if (!sd) { - status = cli_nt_error(cli_state); + status = cli_query_secdesc(cli_state, fnum, + ctx, &sd); + if (!NT_STATUS_IS_OK(status)) { DEBUG( 0, ("display_finfo() failed to " - "get security descriptor: %s", - nt_errstr(status))); + "get security descriptor: %s", + nt_errstr(status))); } else { display_sec_desc(sd); } |