From 641d9e85ea6a134be1d3359b41b8872f6ef65872 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 23 Aug 2000 00:45:40 +0000 Subject: Added code to do SID to uid/gid conversion. Needed for ACL support. Jeremy. (This used to be commit 81c5380f91839b6416c8a42739dadf00e7388528) --- source3/printing/nt_printing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/printing') diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 2444c38847..510432ea74 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -1967,7 +1967,7 @@ static SEC_DESC_BUF *construct_default_printer_sdb(void) SEC_DESC *psd = NULL; DOM_SID owner_sid; size_t sd_size; - uint8 name_type; + enum SID_NAME_USE name_type; /* Create an ACE where Everyone is allowed to print */ @@ -2067,7 +2067,7 @@ BOOL nt_printing_getsec(char *printername, SEC_DESC_BUF **secdesc_ctr) if (sid_equal((*secdesc_ctr)->sec->owner_sid, &global_sid_World)) { DOM_SID owner_sid; - uint8 name_type; + enum SID_NAME_USE name_type; /* Change sd owner to workgroup administrator */ -- cgit