summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-09-11 05:16:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:03:34 -0500
commitb03137d568f598eb0b506c6c4871a1311bc682e7 (patch)
tree63339ed5ea687df2a47602df1fe26d71285a641d /source3/libsmb
parentd99d15446acfc926a2375af6d681420781feffcb (diff)
downloadsamba-b03137d568f598eb0b506c6c4871a1311bc682e7.tar.gz
samba-b03137d568f598eb0b506c6c4871a1311bc682e7.tar.bz2
samba-b03137d568f598eb0b506c6c4871a1311bc682e7.zip
r10150: Fix from Steve Williams <steve@celineandsteve.com> to make the args
consistent (uint64_t). Jeremy. (This used to be commit 08de7261720f7bfd72396ea7c9777dc0734c4593)
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/smb_share_modes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/smb_share_modes.c b/source3/libsmb/smb_share_modes.c
index 1c95fe1a30..9e7f196b82 100644
--- a/source3/libsmb/smb_share_modes.c
+++ b/source3/libsmb/smb_share_modes.c
@@ -94,8 +94,8 @@ int smb_lock_share_mode_entry(struct smbdb_ctx *db_ctx,
}
int smb_unlock_share_mode_entry(struct smbdb_ctx *db_ctx,
- dev_t dev,
- ino_t ino)
+ uint64_t dev,
+ uint64_t ino)
{
return tdb_chainunlock(db_ctx->smb_tdb, get_locking_key(dev, ino));
}