diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-09-30 03:07:08 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-30 03:07:08 +0200 |
commit | 235b729309a17fa44fecf743db5fe6552f67f577 (patch) | |
tree | da1c3bd3f90e95c103f596a3ff131a3cee8f25ef /source4/libcli | |
parent | 181ee01da67985f5db684500247d655ce72fe611 (diff) | |
download | samba-235b729309a17fa44fecf743db5fe6552f67f577.tar.gz samba-235b729309a17fa44fecf743db5fe6552f67f577.tar.bz2 samba-235b729309a17fa44fecf743db5fe6552f67f577.zip |
Cope with API changes.
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/cliconnect.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/libcli/cliconnect.c b/source4/libcli/cliconnect.c index 3b1c3c5314..e42b04cdc5 100644 --- a/source4/libcli/cliconnect.c +++ b/source4/libcli/cliconnect.c @@ -146,7 +146,8 @@ NTSTATUS smbcli_full_connection(TALLOC_CTX *parent_ctx, struct cli_credentials *credentials, struct resolve_context *resolve_ctx, struct event_context *ev, - struct smbcli_options *options) + struct smbcli_options *options, + struct smbcli_session_options *session_options) { struct smbcli_tree *tree; NTSTATUS status; @@ -157,7 +158,8 @@ NTSTATUS smbcli_full_connection(TALLOC_CTX *parent_ctx, &tree, host, ports, sharename, devtype, credentials, resolve_ctx, ev, - options); + options, + session_options); if (!NT_STATUS_IS_OK(status)) { goto done; } |