From 27ce662f5d4e1185cedc59c52f94458fb6425f5c Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 22 Jul 2008 12:16:46 +0200 Subject: [PATCH] rpcclient: make DsGetNCChanges work against w2k8 (add knowledge of DsBindInfo48) Michael --- source/rpcclient/cmd_drsuapi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/rpcclient/cmd_drsuapi.c b/source/rpcclient/cmd_drsuapi.c index 630354fe515..1cef6b910b0 100644 --- a/source/rpcclient/cmd_drsuapi.c +++ b/source/rpcclient/cmd_drsuapi.c @@ -405,6 +405,8 @@ static WERROR cmd_drsuapi_getncchanges(struct rpc_pipe_client *cli, supported_extensions = bind_info.info.info24.supported_extensions; } else if (bind_info.length == 28) { supported_extensions = bind_info.info.info28.supported_extensions; + } else if (bind_info.length == 48) { + supported_extensions = bind_info.info.info48.supported_extensions; } if (!nc_dn) { -- 2.47.3