diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-12-04 01:58:22 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-12-04 01:58:22 +0000 |
commit | 0e494d7ec6793968337c753fc312b6e56efa2114 (patch) | |
tree | 58aee9947e5d4f56a6ac3bfc02897b6ff8a36575 /source3/printing/nt_printing.c | |
parent | d93d218c6d4e3b98a38125a80f7fa9ccab6465d7 (diff) | |
download | samba-0e494d7ec6793968337c753fc312b6e56efa2114.tar.gz samba-0e494d7ec6793968337c753fc312b6e56efa2114.tar.bz2 samba-0e494d7ec6793968337c753fc312b6e56efa2114.zip |
no longer pass the type to make_sec_desc(), instead the type is
derived from the other arguments
(This used to be commit 9ec4b1fa48fbae937fdf78db06005a7b0cd52d89)
Diffstat (limited to 'source3/printing/nt_printing.c')
-rw-r--r-- | source3/printing/nt_printing.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index af2be89e23..1ffc926472 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -2693,7 +2693,6 @@ uint32 nt_printing_setsec(char *printername, SEC_DESC_BUF *secdesc_ctr) /* Make a deep copy of the security descriptor */ psd = make_sec_desc(secdesc_ctr->sec->revision, - secdesc_ctr->sec->type, owner_sid, group_sid, sacl, dacl, @@ -2800,8 +2799,6 @@ static SEC_DESC_BUF *construct_default_printer_sdb(void) if ((psa = make_sec_acl(NT4_ACL_REVISION, 2, ace)) != NULL) { psd = make_sec_desc(SEC_DESC_REVISION, - SEC_DESC_SELF_RELATIVE | - SEC_DESC_DACL_PRESENT, &owner_sid, NULL, NULL, psa, &sd_size); free_sec_acl(&psa); @@ -2874,7 +2871,6 @@ BOOL nt_printing_getsec(char *printername, SEC_DESC_BUF **secdesc_ctr) sid_append_rid(&owner_sid, DOMAIN_USER_RID_ADMIN); psd = make_sec_desc((*secdesc_ctr)->sec->revision, - (*secdesc_ctr)->sec->type, &owner_sid, (*secdesc_ctr)->sec->grp_sid, (*secdesc_ctr)->sec->sacl, |