diff options
author | Michael Adam <obnox@samba.org> | 2012-02-29 02:02:29 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-03-03 17:03:07 +0100 |
commit | ac43937ce4d5100a82df9d76d50d72b97daaedd3 (patch) | |
tree | 75d936c89c6b82b93e3f706b52b119afcc936879 /source3/libsmb | |
parent | 5a5f98dc70bcca088af061473b8cb465e5aa6ff0 (diff) | |
download | samba-ac43937ce4d5100a82df9d76d50d72b97daaedd3.tar.gz samba-ac43937ce4d5100a82df9d76d50d72b97daaedd3.tar.bz2 samba-ac43937ce4d5100a82df9d76d50d72b97daaedd3.zip |
smbXcli: add the possiblilty to negotiate client capabilites in smb >= 2.2
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clientgen.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |