s3:rpc_client: allow Netlogon{Network,Interactive}TransitiveInformation in rpccli_net...
authorStefan Metzmacher <metze@samba.org>
Mon, 15 Jan 2018 10:58:31 +0000 (11:58 +0100)
committerRalph Boehme <slow@samba.org>
Sat, 10 Feb 2018 07:35:15 +0000 (08:35 +0100)
Bug: https://bugzilla.samba.org/show_bug.cgi?id=13234

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/rpc_client/cli_netlogon.c

index 800b995215cdd27ad1ae9394bb208b0c57bccf6c..7dc69c066c7dfcabbd3207228cea8a9ce84a5ae0 100644 (file)
@@ -490,7 +490,8 @@ NTSTATUS rpccli_netlogon_password_logon(
        /* Initialise input parameters */
 
        switch (logon_type) {
-       case NetlogonInteractiveInformation: {
+       case NetlogonInteractiveInformation:
+       case NetlogonInteractiveTransitiveInformation: {
 
                struct netr_PasswordInfo *password_info;
 
@@ -519,7 +520,8 @@ NTSTATUS rpccli_netlogon_password_logon(
 
                break;
        }
-       case NetlogonNetworkInformation: {
+       case NetlogonNetworkInformation:
+       case NetlogonNetworkTransitiveInformation: {
                struct netr_NetworkInfo *network_info;
                uint8_t chal[8];
                unsigned char local_lm_response[24];