summaryrefslogtreecommitdiff
path: root/source3/include/client.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-07-22 08:38:59 +0200
committerStefan Metzmacher <metze@samba.org>2011-07-22 08:44:08 +0200
commit9f2b3b0be6837c280a033b2fddf8fd433421d206 (patch)
treec555b4aab59c8cad110f405df931e14f50d72204 /source3/include/client.h
parentb94a7caa3ada6764c29ab75bf72fbb153c650bc0 (diff)
downloadsamba-9f2b3b0be6837c280a033b2fddf8fd433421d206.tar.gz
samba-9f2b3b0be6837c280a033b2fddf8fd433421d206.tar.bz2
samba-9f2b3b0be6837c280a033b2fddf8fd433421d206.zip
s3:libsmb: move cli_state->pending to cli_state->conn.pending
metze
Diffstat (limited to 'source3/include/client.h')
-rw-r--r--source3/include/client.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h
index cfc0b41709..72bb25a2d7 100644
--- a/source3/include/client.h
+++ b/source3/include/client.h
@@ -125,7 +125,10 @@ struct cli_state {
char *dfs_mountpoint;
struct tevent_queue *outgoing;
- struct tevent_req **pending;
+
+ struct {
+ struct tevent_req **pending;
+ } conn;
struct {
uint16_t mid;