diff options
author | Matthew Chapman <matty@samba.org> | 1999-06-02 03:19:20 +0000 |
---|---|---|
committer | Matthew Chapman <matty@samba.org> | 1999-06-02 03:19:20 +0000 |
commit | 99e42c0656d3e1e3b8e06437a8a9082c12df22d2 (patch) | |
tree | db75fd259f749760beca37872888246158438ca9 /source3/include/proto.h | |
parent | c2919e499a755014ade1381552f4d808f443d89f (diff) | |
download | samba-99e42c0656d3e1e3b8e06437a8a9082c12df22d2.tar.gz samba-99e42c0656d3e1e3b8e06437a8a9082c12df22d2.tar.xz samba-99e42c0656d3e1e3b8e06437a8a9082c12df22d2.zip |
Some more BDC-related fixes, mainly to the NET_SAM_SYNC RPC with respect
to alignment, missing fields, etc. - it should now work correctly.
There is still the problem of decoding the private data field.
(This used to be commit c3c25e762fbc30d5663323f23449c913f2ce4b0e)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 12958baa3a..4efc7f803c 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1708,9 +1708,10 @@ BOOL cli_net_srv_pwset(struct cli_state *cli, uint16 nt_pipe_fnum, BOOL cli_net_sam_logon(struct cli_state *cli, uint16 nt_pipe_fnum, NET_ID_INFO_CTR *ctr, NET_USER_INFO_3 *user_info3); BOOL cli_net_sam_logoff(struct cli_state *cli, uint16 nt_pipe_fnum, NET_ID_INFO_CTR *ctr); -BOOL cli_net_sam_sync(struct cli_state *cli, uint16 nt_pipe_fnum, uint32 database_id); +BOOL cli_net_sam_sync(struct cli_state *cli, uint16 nt_pipe_fnum, uint32 database_id, uint32 *num_deltas, SAM_DELTA_HDR *hdr_deltas, SAM_DELTA_CTR *deltas); BOOL change_trust_account_password(char *domain, char *remote_machine_list, uint16 sec_chan); +BOOL do_sam_sync(struct cli_state *cli); /*The following definitions come from rpc_client/cli_pipe.c */ |