diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-01-14 12:00:53 +1100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-01-20 23:55:55 +0100 |
commit | 41ed715d42434c5eba2fc4cd9fe267c5179330da (patch) | |
tree | a11c540c6cf58cffdd2e6d7438541f5dd260155d /source3/libsmb | |
parent | 06f7105490ecd387f726d540b33c8eba960e9cfb (diff) | |
download | samba-41ed715d42434c5eba2fc4cd9fe267c5179330da.tar.gz samba-41ed715d42434c5eba2fc4cd9fe267c5179330da.tar.bz2 samba-41ed715d42434c5eba2fc4cd9fe267c5179330da.zip |
s3-libsmb: use struct gensec_security directly
This is rather than via a now one-element union.
Andrew Bartlett
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clifsinfo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libsmb/clifsinfo.c b/source3/libsmb/clifsinfo.c index 26f98311cb..fe0238a34e 100644 --- a/source3/libsmb/clifsinfo.c +++ b/source3/libsmb/clifsinfo.c @@ -662,8 +662,8 @@ NTSTATUS cli_raw_ntlm_smb_encryption_start(struct cli_state *cli, /* We only need the gensec_security part from here. * es is a malloc()ed pointer, so we cannot make * gensec_security a talloc child */ - es->s.gensec_security = talloc_move(NULL, - &auth_generic_state->gensec_security); + es->gensec_security = talloc_move(NULL, + &auth_generic_state->gensec_security); smb1cli_conn_set_encryption(cli->conn, es); es = NULL; } @@ -783,8 +783,8 @@ NTSTATUS cli_gss_smb_encryption_start(struct cli_state *cli) /* We only need the gensec_security part from here. * es is a malloc()ed pointer, so we cannot make * gensec_security a talloc child */ - es->s.gensec_security = talloc_move(NULL, - &auth_generic_state->gensec_security); + es->gensec_security = talloc_move(NULL, + &auth_generic_state->gensec_security); smb1cli_conn_set_encryption(cli->conn, es); es = NULL; } |