summaryrefslogtreecommitdiff
path: root/source3/include/client.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-07-22 09:39:52 +0200
committerStefan Metzmacher <metze@samba.org>2011-07-22 17:06:07 +0200
commit13dbd5021b8f661e4fe38099e1aed03e5b0c02d6 (patch)
tree58302b4de447e72d295c902852d2342ed06ecd88 /source3/include/client.h
parent6d1757f1893e8f15c645eca44377de2f5a67232a (diff)
downloadsamba-13dbd5021b8f661e4fe38099e1aed03e5b0c02d6.tar.gz
samba-13dbd5021b8f661e4fe38099e1aed03e5b0c02d6.tar.bz2
samba-13dbd5021b8f661e4fe38099e1aed03e5b0c02d6.zip
s3:libsmb: move cli_state->fd to cli_state->conn.fd
metze
Diffstat (limited to 'source3/include/client.h')
-rw-r--r--source3/include/client.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h
index 26b8fcb405..4043774e22 100644
--- a/source3/include/client.h
+++ b/source3/include/client.h
@@ -51,7 +51,6 @@ struct cli_state {
* A list of subsidiary connections for DFS.
*/
struct cli_state *prev, *next;
- int fd;
int protocol;
int sec_mode;
int rap_error;
@@ -125,6 +124,7 @@ struct cli_state {
char *dfs_mountpoint;
struct {
+ int fd;
struct tevent_queue *outgoing;
struct tevent_req **pending;
} conn;