1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-10 04:23:50 +03:00

r15385: Some work to bring the python code up to date with the

rpc client rewrite.
This commit is contained in:
Deryck Hodge
2006-05-01 22:31:33 +00:00
committed by Gerald (Jerry) Carter
parent a02933c958
commit fd5bcecceb
9 changed files with 17 additions and 17 deletions

View File

@@ -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;