From 13dbd5021b8f661e4fe38099e1aed03e5b0c02d6 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 22 Jul 2011 09:39:52 +0200 Subject: s3:libsmb: move cli_state->fd to cli_state->conn.fd metze --- source3/include/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include') 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; -- cgit