diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-05-07 15:31:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:21:54 -0500 |
commit | 76ce309234adbe0a6a56b849a91714cab148c4a7 (patch) | |
tree | 0fe73b35a0c08fbc9b347dfeb23ce89f0bc08885 /source3/include | |
parent | 71921605995fa95d84301534760a6bc2db3fa74b (diff) | |
download | samba-76ce309234adbe0a6a56b849a91714cab148c4a7.tar.gz samba-76ce309234adbe0a6a56b849a91714cab148c4a7.tar.bz2 samba-76ce309234adbe0a6a56b849a91714cab148c4a7.zip |
r22751: Next step for the cluster merge: sessionid.tdb should contain a 'struct
server_id' instead of a 'uint32 pid'
(This used to be commit be7bac55c37676a8137c59a22dfb2e4c4821ac21)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/session.h b/source3/include/session.h index 8c8faab532..1220f66dc5 100644 --- a/source3/include/session.h +++ b/source3/include/session.h @@ -36,7 +36,7 @@ struct sessionid { fstring remote_machine; fstring id_str; uint32 id_num; - uint32 pid; + struct server_id pid; fstring ip_addr; time_t connect_start; }; |