diff options
author | Michael Adam <obnox@samba.org> | 2008-07-22 16:18:03 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-07-22 16:28:13 +0200 |
commit | 2bd58bf3839d9c8b04deb84bd8d5cdc2ad9e9d97 (patch) | |
tree | fcf130ec69b03d23758fe0f3d02ea7dc9aa7f811 | |
parent | bb1c03f1c662ced3e19e613dc1849d7f2bf28d75 (diff) | |
download | samba-2bd58bf3839d9c8b04deb84bd8d5cdc2ad9e9d97.tar.gz samba-2bd58bf3839d9c8b04deb84bd8d5cdc2ad9e9d97.tar.bz2 samba-2bd58bf3839d9c8b04deb84bd8d5cdc2ad9e9d97.zip |
Change occurrences of the u1 member of DsBindInfo* to pid after idl change.
Michael
(This used to be commit 42f3d681cac4a443347d1ed253848d45f8746f89)
-rw-r--r-- | source3/libnet/libnet_dssync.c | 2 | ||||
-rw-r--r-- | source3/rpcclient/cmd_drsuapi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/libnet/libnet_dssync.c b/source3/libnet/libnet_dssync.c index 9abff69ae1..b55e6d1906 100644 --- a/source3/libnet/libnet_dssync.c +++ b/source3/libnet/libnet_dssync.c @@ -221,7 +221,7 @@ static NTSTATUS libnet_dssync_bind(TALLOC_CTX *mem_ctx, info28.supported_extensions |= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7; info28.supported_extensions |= DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT; info28.site_guid = GUID_zero(); - info28.u1 = 508; + info28.pid = 508; info28.repl_epoch = 0; bind_info.length = 28; diff --git a/source3/rpcclient/cmd_drsuapi.c b/source3/rpcclient/cmd_drsuapi.c index 1cef6b910b..ab77b4ccff 100644 --- a/source3/rpcclient/cmd_drsuapi.c +++ b/source3/rpcclient/cmd_drsuapi.c @@ -381,7 +381,7 @@ static WERROR cmd_drsuapi_getncchanges(struct rpc_pipe_client *cli, info28.supported_extensions |= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7; info28.supported_extensions |= DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT; info28.site_guid = GUID_zero(); - info28.u1 = 508; + info28.pid = 508; info28.repl_epoch = 0; bind_info.length = 28; |