diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-07-30 20:04:42 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-07-30 20:04:42 +0200 |
commit | 6768cfe624fffef13109989e9cc79ccb4df13d19 (patch) | |
tree | 118d663f818c26bd28afbfded01dc8fd6651402e /pidl | |
parent | eda7f35bc891ca4a7505ec054a2b4591c6edfb38 (diff) | |
download | samba-6768cfe624fffef13109989e9cc79ccb4df13d19.tar.gz samba-6768cfe624fffef13109989e9cc79ccb4df13d19.tar.xz samba-6768cfe624fffef13109989e9cc79ccb4df13d19.zip |
DCE/RPC(Python): Rename py_talloc_import to py_talloc_steal.
Use py_talloc_reference in DCE/RPC code, fixes
access to SAMR pipe.
Diffstat (limited to 'pidl')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/Python.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/Python.pm b/pidl/lib/Parse/Pidl/Samba4/Python.pm index d27192d6ddb..462f8333e1f 100644 --- a/pidl/lib/Parse/Pidl/Samba4/Python.pm +++ b/pidl/lib/Parse/Pidl/Samba4/Python.pm @@ -1030,7 +1030,7 @@ sub ConvertObjectToPythonData($$$$$;$) error($location, "Unable to determine origin of type `" . mapTypeName($ctype) . "'"); return "NULL"; # FIXME! } - return "py_talloc_import_ex($ctype_name, $mem_ctx, $cvar)"; + return "py_talloc_reference_ex($ctype_name, $mem_ctx, $cvar)"; } fatal($location, "unknown type $actual_ctype->{TYPE} for ".mapTypeName($ctype) . ": $cvar"); |