summaryrefslogtreecommitdiff
path: root/source3/rpc_parse
diff options
context:
space:
mode:
authorDavid O'Neill <dmo@samba.org>2001-01-29 21:32:45 +0000
committerDavid O'Neill <dmo@samba.org>2001-01-29 21:32:45 +0000
commit9ec19336e519ef3543eb9d3eafb24585657a2e8d (patch)
tree73de4cca7f9480d1ab0922e2aa0a20a164ad4a19 /source3/rpc_parse
parentb370588b9c451d6aa8a0ba0f7513013f6d9847ac (diff)
downloadsamba-9ec19336e519ef3543eb9d3eafb24585657a2e8d.tar.gz
samba-9ec19336e519ef3543eb9d3eafb24585657a2e8d.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_lsa.c b/source3/rpc_parse/parse_lsa.c
index 00fda669a0..8654453bcf 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) {