1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-18 06:04:06 +03:00

smbd: Avoid casts in smbd_do_locking()

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2019-05-21 09:17:24 +02:00 committed by Jeremy Allison
parent f283b7a4ee
commit 1838a8df59

View File

@ -8096,13 +8096,13 @@ NTSTATUS smbd_do_locking(struct smb_request *req,
for(i = 0; i < (int)num_locks; i++) {
struct smbd_lock_element *e = &locks[i];
DEBUG(10,("smbd_do_locking: lock start=%.0f, len=%.0f for smblctx "
"%llu, file %s timeout = %d\n",
(double)e->offset,
(double)e->count,
(unsigned long long)e->smblctx,
DBG_DEBUG("lock start=%"PRIu64", len=%"PRIu64" for smblctx "
"%"PRIu64", file %s timeout = %"PRIi32"\n",
e->offset,
e->count,
e->smblctx,
fsp_str_dbg(fsp),
(int)timeout));
timeout);
if (type & LOCKING_ANDX_CANCEL_LOCK) {
struct blocking_lock_record *blr = NULL;
@ -8261,8 +8261,10 @@ NTSTATUS smbd_do_locking(struct smb_request *req,
return status;
}
DEBUG(3, ("smbd_do_locking: %s type=%d num_locks=%d\n",
fsp_fnum_dbg(fsp), (unsigned int)type, num_locks));
DBG_NOTICE("%s type=%"PRIu8" num_locks=%"PRIu16"\n",
fsp_fnum_dbg(fsp),
type,
num_locks);
return NT_STATUS_OK;
}