From: Michael Adam Date: Tue, 22 Jul 2008 10:16:46 +0000 (+0200) Subject: rpcclient: make DsGetNCChanges work against w2k8 (add knowledge of DsBindInfo48) X-Git-Tag: samba-3.3.0pre1~421 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27ce662f5d4e1185cedc59c52f94458fb6425f5c;p=thirdparty%2Fsamba.git rpcclient: make DsGetNCChanges work against w2k8 (add knowledge of DsBindInfo48) Michael --- 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) {