diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-07-19 12:56:51 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-07-20 15:55:08 +0200 |
commit | 1e3822115c3b466632044fe64c908b6f2de5803a (patch) | |
tree | bd8d064257576166fa50d3f3db324a81f3ac6df1 /source3/include | |
parent | 9fb7e228f5a6e39dd22e1c56733c61178ee0be49 (diff) | |
download | samba-1e3822115c3b466632044fe64c908b6f2de5803a.tar.gz samba-1e3822115c3b466632044fe64c908b6f2de5803a.tar.bz2 samba-1e3822115c3b466632044fe64c908b6f2de5803a.zip |
s3:libsmb: move cli->pid to cli->smb1.pid and hide it behind cli_[g|s]etpid()
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 3c99716e62..67c858f76f 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -53,7 +53,6 @@ struct cli_state { struct cli_state *prev, *next; int fd; uint16 cnum; - uint16 pid; uint16 vuid; int protocol; int sec_mode; @@ -134,6 +133,7 @@ struct cli_state { struct { uint16_t mid; + uint16_t pid; uint16_t vc_num; } smb1; |