diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-08-25 14:33:17 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-08-25 23:05:05 +1000 |
commit | ba5b3fb2480af2b3f8b5b69e4c161af07241e0c4 (patch) | |
tree | 922e3840676c6596b5c56db42f5aa051001122e9 /source4 | |
parent | 4f8087cdb95c6036358a41398d73c3ad90c5755c (diff) | |
download | samba-ba5b3fb2480af2b3f8b5b69e4c161af07241e0c4.tar.gz samba-ba5b3fb2480af2b3f8b5b69e4c161af07241e0c4.tar.bz2 samba-ba5b3fb2480af2b3f8b5b69e4c161af07241e0c4.zip |
s4-rodc: removed python memory workaround
we can now assign pidl generates structures directly without errors
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/join.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/join.py b/source4/scripting/python/samba/join.py index e6cda135ef..c48b53fc13 100644 --- a/source4/scripting/python/samba/join.py +++ b/source4/scripting/python/samba/join.py @@ -191,8 +191,7 @@ def join_rodc(server=None, creds=None, lp=None, site=None, netbios_name=None, req8.mapping_ctr.mappings = None if not schema: - pas = get_rodc_partial_attribute_set(ctx) - req8.partial_attribute_set = pas + req8.partial_attribute_set = get_rodc_partial_attribute_set(ctx) while True: (level, ctr) = ctx.drs.DsGetNCChanges(ctx.drs_handle, 8, req8) |