diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-25 12:08:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:59:14 -0500 |
commit | c5f4378361b9671e39fa83b043f28c972ab30b70 (patch) | |
tree | 455519b7d5590d151cf1f2291ca99f8fc77234bb /source4/libcli/raw | |
parent | 223e78990a16f134a01d1223a0dad8b2accd5fed (diff) | |
download | samba-c5f4378361b9671e39fa83b043f28c972ab30b70.tar.gz samba-c5f4378361b9671e39fa83b043f28c972ab30b70.tar.bz2 samba-c5f4378361b9671e39fa83b043f28c972ab30b70.zip |
r2629: convert gensec to the new talloc model
by making our gensec structures a talloc child of the open connection
we can be sure that it will be destroyed when the connection is
dropped.
(This used to be commit f12ee2f241aab1549bc1d9ca4c35a35a1ca0d09d)
Diffstat (limited to 'source4/libcli/raw')
-rw-r--r-- | source4/libcli/raw/clisession.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/raw/clisession.c b/source4/libcli/raw/clisession.c index 264c1cd616..37992968a4 100644 --- a/source4/libcli/raw/clisession.c +++ b/source4/libcli/raw/clisession.c @@ -395,7 +395,7 @@ static NTSTATUS smb_raw_session_setup_generic_spnego(struct smbcli_session *sess smbcli_temp_set_signing(session->transport); - status = gensec_client_start(&session->gensec); + status = gensec_client_start(session, &session->gensec); if (!NT_STATUS_IS_OK(status)) { DEBUG(1, ("Failed to start GENSEC client mode: %s\n", nt_errstr(status))); goto done; |