diff options
author | David O'Neill <dmo@samba.org> | 2001-01-29 21:32:45 +0000 |
---|---|---|
committer | David O'Neill <dmo@samba.org> | 2001-01-29 21:32:45 +0000 |
commit | 9ec19336e519ef3543eb9d3eafb24585657a2e8d (patch) | |
tree | 73de4cca7f9480d1ab0922e2aa0a20a164ad4a19 /source3/rpc_parse | |
parent | b370588b9c451d6aa8a0ba0f7513013f6d9847ac (diff) | |
download | samba-9ec19336e519ef3543eb9d3eafb24585657a2e8d.tar.gz samba-9ec19336e519ef3543eb9d3eafb24585657a2e8d.tar.xz samba-9ec19336e519ef3543eb9d3eafb24585657a2e8d.zip |
Changes from SAMBA_2_2:
- fix typo in cast from talloc
(This used to be commit f24aa0b51f06b8181b46bb1d2e73d91e5159fe1c)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_lsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_lsa.c b/source3/rpc_parse/parse_lsa.c index 00fda669a0b..8654453bcfe 100644 --- a/source3/rpc_parse/parse_lsa.c +++ b/source3/rpc_parse/parse_lsa.c @@ -708,7 +708,7 @@ static BOOL lsa_io_dom_query_2(char *desc, DOM_QUERY_2 *d_q, prs_struct *ps, int return False; if (UNMARSHALLING(ps)) { - d_q->auditsettings = (uint32)talloc(ps->mem_ctx, d_q->count2 * sizeof(uint32)); + d_q->auditsettings = (uint32 *)talloc(ps->mem_ctx, d_q->count2 * sizeof(uint32)); } if (d_q->auditsettings == NULL) { |