diff options
author | Michael Adam <obnox@samba.org> | 2012-06-06 15:28:14 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-06 19:37:14 +0200 |
commit | 43890972945f19fdf0f009eec03e7d493b2760e9 (patch) | |
tree | 5183356d3a455bab73639e09d8d0dfd7296f2bfe /source3/locking | |
parent | 86f621488aae89856a9c6ae5a91ae5bf96302659 (diff) | |
download | samba-43890972945f19fdf0f009eec03e7d493b2760e9.tar.gz samba-43890972945f19fdf0f009eec03e7d493b2760e9.tar.bz2 samba-43890972945f19fdf0f009eec03e7d493b2760e9.zip |
s3:include: change connection_struct->cnum to uint32_t
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/locking')
-rw-r--r-- | source3/locking/brlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/locking/brlock.c b/source3/locking/brlock.c index 289e5d13c7..adf1f5194c 100644 --- a/source3/locking/brlock.c +++ b/source3/locking/brlock.c @@ -1486,7 +1486,7 @@ void brl_close_fnum(struct messaging_context *msg_ctx, struct byte_range_lock *br_lck) { files_struct *fsp = br_lck->fsp; - uint16 tid = fsp->conn->cnum; + uint32_t tid = fsp->conn->cnum; int fnum = fsp->fnum; unsigned int i; struct lock_struct *locks = br_lck->lock_data; |