From: Michael Adam Date: Wed, 6 Jun 2012 13:33:58 +0000 (+0200) Subject: s3:include: change lock_context->tid to uint32_t X-Git-Tag: tevent-0.9.16~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fab660780ab5f3afda11ae3daee8f50571fc4145;p=thirdparty%2Fsamba.git s3:include: change lock_context->tid to uint32_t Note: this changes for format of brlock.tdb! Pair-Programmed-With: Stefan Metzmacher --- diff --git a/source3/include/locking.h b/source3/include/locking.h index 3d12fc272c4..8ece11c920f 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; };