diff options
author | Michael Adam <obnox@samba.org> | 2012-06-06 15:33:58 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-06 19:37:14 +0200 |
commit | fab660780ab5f3afda11ae3daee8f50571fc4145 (patch) | |
tree | e8b462600ae3a136c3425a12beb80742f5958d4b /source3 | |
parent | 43890972945f19fdf0f009eec03e7d493b2760e9 (diff) | |
download | samba-fab660780ab5f3afda11ae3daee8f50571fc4145.tar.gz samba-fab660780ab5f3afda11ae3daee8f50571fc4145.tar.bz2 samba-fab660780ab5f3afda11ae3daee8f50571fc4145.zip |
s3:include: change lock_context->tid to uint32_t
Note: this changes for format of brlock.tdb!
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/locking.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/locking.h b/source3/include/locking.h index 3d12fc272c..8ece11c920 100644 --- a/source3/include/locking.h +++ b/source3/include/locking.h @@ -39,7 +39,7 @@ enum brl_flavour {WINDOWS_LOCK = 0, POSIX_LOCK = 1}; struct lock_context { uint64_t smblctx; - uint16 tid; + uint32_t tid; struct server_id pid; }; |