From ac43937ce4d5100a82df9d76d50d72b97daaedd3 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 29 Feb 2012 02:02:29 +0100 Subject: smbXcli: add the possiblilty to negotiate client capabilites in smb >= 2.2 Pair-Programmed-With: Stefan Metzmacher --- source3/libsmb/clientgen.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c index 29a26d2f76..481d9f729b 100644 --- a/source3/libsmb/clientgen.c +++ b/source3/libsmb/clientgen.c @@ -260,7 +260,8 @@ struct cli_state *cli_state_create(TALLOC_CTX *mem_ctx, cli->conn = smbXcli_conn_create(cli, fd, remote_name, signing_state, smb1_capabilities, - NULL); /* client_guid */ + NULL, /* client_guid */ + 0 /* smb1_capabilites */); if (cli->conn == NULL) { goto error; } -- cgit