From aee979faaa45ee9b1f9ab20af3832d97fb74dcf2 Mon Sep 17 00:00:00 2001 From: Deryck Hodge Date: Mon, 1 May 2006 22:31:33 +0000 Subject: r15385: Some work to bring the python code up to date with the rpc client rewrite. (This used to be commit fd5bcecceb518d0683f400a61e11ce37f3d52d42) --- source3/python/py_samr.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/python/py_samr.h') diff --git a/source3/python/py_samr.h b/source3/python/py_samr.h index 8e91b1671e..9cde99e2d0 100644 --- a/source3/python/py_samr.h +++ b/source3/python/py_samr.h @@ -27,7 +27,7 @@ typedef struct { PyObject_HEAD - struct cli_state *cli; + struct rpc_pipe_client *cli; TALLOC_CTX *mem_ctx; POLICY_HND connect_pol; } samr_connect_hnd_object; @@ -36,7 +36,7 @@ typedef struct { typedef struct { PyObject_HEAD - struct cli_state *cli; + struct rpc_pipe_client *cli; TALLOC_CTX *mem_ctx; POLICY_HND domain_pol; } samr_domain_hnd_object; @@ -45,7 +45,7 @@ typedef struct { typedef struct { PyObject_HEAD - struct cli_state *cli; + struct rpc_pipe_client *cli; TALLOC_CTX *mem_ctx; POLICY_HND user_pol; } samr_user_hnd_object; -- cgit