summaryrefslogtreecommitdiff
path: root/source3/smbd/ipc.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-06-05 13:17:26 +0200
committerStefan Metzmacher <metze@samba.org>2012-06-06 10:18:40 +0200
commit37bfadf4a389369632e86e3446f37f54a436848f (patch)
treee1e5045996a455de6c635c5c7fca4a2be552ed91 /source3/smbd/ipc.c
parent5a260a1d58a56054762fee17ca66e0f87a5aac85 (diff)
downloadsamba-37bfadf4a389369632e86e3446f37f54a436848f.tar.gz
samba-37bfadf4a389369632e86e3446f37f54a436848f.tar.bz2
samba-37bfadf4a389369632e86e3446f37f54a436848f.zip
s3:include: change files_struct->vuid to uint64_t
metze
Diffstat (limited to 'source3/smbd/ipc.c')
-rw-r--r--source3/smbd/ipc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c
index 3d9b174cf9..083c6882a7 100644
--- a/source3/smbd/ipc.c
+++ b/source3/smbd/ipc.c
@@ -494,7 +494,8 @@ static void api_fd_reply(connection_struct *conn, uint16 vuid,
if (vuid != fsp->vuid) {
DEBUG(1, ("Got pipe request (pnum %x) using invalid VUID %d, "
- "expected %d\n", pnum, vuid, fsp->vuid));
+ "expected %llu\n", pnum, vuid,
+ (unsigned long long)fsp->vuid));
reply_nterror(req, NT_STATUS_INVALID_HANDLE);
return;
}