1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

Tut tut - always run with max warnings on gcc...

Jeremy.
(This used to be commit 3ebbd67dec2044ed8022491747e65b90f1354602)
This commit is contained in:
Jeremy Allison 2003-10-07 05:06:58 +00:00
parent 0a22ddd7dc
commit 764c03b9b8

View File

@ -1811,7 +1811,7 @@ static BOOL lsa_io_privilege_set(const char *desc, PRIVILEGE_SET *r_c, prs_struc
NTSTATUS init_lsa_r_enum_privsaccount(TALLOC_CTX *mem_ctx, LSA_R_ENUMPRIVSACCOUNT *r_u, LUID_ATTR *set, uint32 count, uint32 control)
{
NTSTATUS ret;
NTSTATUS ret = NT_STATUS_OK;
r_u->ptr = 1;
r_u->count = count;
@ -1823,6 +1823,8 @@ NTSTATUS init_lsa_r_enum_privsaccount(TALLOC_CTX *mem_ctx, LSA_R_ENUMPRIVSACCOUN
return ret;
DEBUG(10,("init_lsa_r_enum_privsaccount: %d %d privileges\n", r_u->count, r_u->set->count));
return ret;
}
/*******************************************************************