summaryrefslogtreecommitdiff
path: root/source3/include/locking.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-06-06 15:33:58 +0200
committerMichael Adam <obnox@samba.org>2012-06-06 19:37:14 +0200
commitfab660780ab5f3afda11ae3daee8f50571fc4145 (patch)
treee8b462600ae3a136c3425a12beb80742f5958d4b /source3/include/locking.h
parent43890972945f19fdf0f009eec03e7d493b2760e9 (diff)
downloadsamba-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/include/locking.h')
-rw-r--r--source3/include/locking.h2
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;
};