s3:auth: s/Undefined/SMB_SIGNING_DEFAULT/
authorStefan Metzmacher <metze@samba.org>
Wed, 2 Nov 2011 17:41:50 +0000 (18:41 +0100)
committerStefan Metzmacher <metze@samba.org>
Thu, 3 Nov 2011 15:55:12 +0000 (16:55 +0100)
metze

source3/auth/auth_domain.c
source3/auth/auth_server.c

index a4e798e4e9a6584741bfd99d6d1f650f85137f2d..696b18bd4207f50a3e3048645d47d2d13e8f8512 100644 (file)
@@ -147,7 +147,7 @@ static NTSTATUS connect_to_domain_password_server(struct cli_state **cli,
 
        /* Attempt connection */
        result = cli_full_connection(cli, lp_netbios_name(), dc_name, dc_ss, 0,
-               "IPC$", "IPC", "", "", "", 0, Undefined);
+               "IPC$", "IPC", "", "", "", 0, SMB_SIGNING_DEFAULT);
 
        if (!NT_STATUS_IS_OK(result)) {
                /* map to something more useful */
index 8a9e5cdf205597268b5dacd7ef6786ba77a74397..3bd69cda4d5132633c98cd0501e3aa249f945cfc 100644 (file)
@@ -88,7 +88,8 @@ static struct cli_state *server_cryptkey(TALLOC_CTX *mem_ctx)
                }
 
                status = cli_connect_nb(desthost, &dest_ss, 0, 0x20,
-                                       lp_netbios_name(), Undefined, flags, &cli);
+                                       lp_netbios_name(), SMB_SIGNING_DEFAULT,
+                                       flags, &cli);
                if (NT_STATUS_IS_OK(status)) {
                        DEBUG(3,("connected to password server %s\n",desthost));
                        connected_ok = True;