summaryrefslogtreecommitdiff
path: root/source3/libsmb/clientgen.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-07-22 08:41:20 +0200
committerStefan Metzmacher <metze@samba.org>2011-07-22 09:53:59 +0200
commita11cc880ef0a7e105c46b835fb3c793da7cabb53 (patch)
treeb3c646eac6889e1bf6ccdf15cf2a50508e6fe066 /source3/libsmb/clientgen.c
parent9f2b3b0be6837c280a033b2fddf8fd433421d206 (diff)
downloadsamba-a11cc880ef0a7e105c46b835fb3c793da7cabb53.tar.gz
samba-a11cc880ef0a7e105c46b835fb3c793da7cabb53.tar.bz2
samba-a11cc880ef0a7e105c46b835fb3c793da7cabb53.zip
s3:libsmb: move cli_state->outgoing to cli_state->conn.outgoing
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Fri Jul 22 09:53:59 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/libsmb/clientgen.c')
-rw-r--r--source3/libsmb/clientgen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c
index b84b1812e8..c394197ad9 100644
--- a/source3/libsmb/clientgen.c
+++ b/source3/libsmb/clientgen.c
@@ -233,8 +233,8 @@ struct cli_state *cli_state_create(TALLOC_CTX *mem_ctx,
goto error;
}
- cli->outgoing = tevent_queue_create(cli, "cli_outgoing");
- if (cli->outgoing == NULL) {
+ cli->conn.outgoing = tevent_queue_create(cli, "cli_outgoing");
+ if (cli->conn.outgoing == NULL) {
goto error;
}
cli->conn.pending = NULL;