X-Git-Url: http://git.samba.org/?p=samba.git;a=blobdiff_plain;f=source3%2Fwinbindd%2Fwinbindd_async.c;h=4d5273127379996fc3380d49ca7d7f4e1f5ed7a9;hp=5a350b99bc3d70c0f261247957cca0bd9dc68cbc;hb=4bf783d4d6693f927f5e7ef7a9855766c91983f2;hpb=fb5383c69ee52fb5e6d066a43451dc8c806cc795 diff --git a/source3/winbindd/winbindd_async.c b/source3/winbindd/winbindd_async.c index 5a350b99bc3..4d527312737 100644 --- a/source3/winbindd/winbindd_async.c +++ b/source3/winbindd/winbindd_async.c @@ -26,8 +26,8 @@ #undef DBGC_CLASS #define DBGC_CLASS DBGC_WINBIND -bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids, - size_t num_sids, char **result, ssize_t *len) +bool print_sidlist(TALLOC_CTX *mem_ctx, const struct dom_sid *sids, + uint32_t num_sids, char **result, ssize_t *len) { size_t i; size_t buflen = 0; @@ -48,7 +48,7 @@ bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids, } bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr, - DOM_SID **sids, size_t *num_sids) + struct dom_sid **sids, uint32_t *num_sids) { const char *p, *q; @@ -59,7 +59,7 @@ bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr, while (p[0] != '\0') { fstring tmp; size_t sidlen; - DOM_SID sid; + struct dom_sid sid; q = strchr(p, '\n'); if (q == NULL) { DEBUG(0, ("Got invalid sidstr: %s\n", p));