diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-07-19 11:34:35 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-07-20 15:48:59 +0200 |
commit | 6c31b610e4c44105ddeb9a5ffd8e64ef3954e79e (patch) | |
tree | 82ca4f212de242c0bbd85e68ab1210f1c715177f /source3/include | |
parent | 21a6bdc680311d58625c4e46c8126b38700fac52 (diff) | |
download | samba-6c31b610e4c44105ddeb9a5ffd8e64ef3954e79e.tar.gz samba-6c31b610e4c44105ddeb9a5ffd8e64ef3954e79e.tar.bz2 samba-6c31b610e4c44105ddeb9a5ffd8e64ef3954e79e.zip |
s3:libsmb: move cli->mid to cli->smb1.mid
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index dfd457b891..849a7c08b4 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -54,7 +54,6 @@ struct cli_state { int fd; uint16 cnum; uint16 pid; - uint16 mid; uint16 vuid; int protocol; int sec_mode; @@ -134,6 +133,10 @@ struct cli_state { struct tevent_req **pending; struct { + uint16_t mid; + } smb1; + + struct { uint64_t mid; uint32_t pid; uint32_t tid; |