From 37bfadf4a389369632e86e3446f37f54a436848f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Jun 2012 13:17:26 +0200 Subject: s3:include: change files_struct->vuid to uint64_t metze --- source3/smbd/ipc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/smbd/ipc.c') 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; } -- cgit