s3-client/client.c: replace cli_query_secdesc_old()
[ddiss/samba.git] / source3 / client / client.c
index 5c4d63a8c1b7b82eaba61e41bef146379caa3427..e6fffcbcfd2c250abb1b405f16434da73d3e6726 100644 (file)
@@ -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);
                        }