diff options
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/raw/rawfile.c | 2 | ||||
-rw-r--r-- | source4/libcli/smb2/smb2.h | 4 | ||||
-rw-r--r-- | source4/libcli/wrepl/winsrepl.c | 9 |
3 files changed, 9 insertions, 6 deletions
diff --git a/source4/libcli/raw/rawfile.c b/source4/libcli/raw/rawfile.c index f8b5e90e4b..3d2d407583 100644 --- a/source4/libcli/raw/rawfile.c +++ b/source4/libcli/raw/rawfile.c @@ -860,7 +860,7 @@ NTSTATUS smb_raw_chkpath(struct smbcli_tree *tree, union smb_chkpath *parms) struct smbcli_request *smb_raw_flush_send(struct smbcli_tree *tree, union smb_flush *parms) { struct smbcli_request *req; - uint16_t fnum; + uint16_t fnum=0; switch (parms->generic.level) { case RAW_FLUSH_FLUSH: diff --git a/source4/libcli/smb2/smb2.h b/source4/libcli/smb2/smb2.h index 070eaf54ab..586acaccf6 100644 --- a/source4/libcli/smb2/smb2.h +++ b/source4/libcli/smb2/smb2.h @@ -204,12 +204,12 @@ struct smb2_request { uint16_t want_size = ((dynamic)?(size)+1:(size)); \ if (is_size < (size)) { \ DEBUG(0,("%s: buffer too small 0x%x. Expected 0x%x\n", \ - __location__, is_size, want_size)); \ + __location__, (unsigned)is_size, (unsigned)want_size)); \ return NT_STATUS_BUFFER_TOO_SMALL; \ }\ if (field_size != want_size) { \ DEBUG(0,("%s: unexpected fixed body size 0x%x. Expected 0x%x\n", \ - __location__, field_size, want_size)); \ + __location__, (unsigned)field_size, (unsigned)want_size)); \ return NT_STATUS_INVALID_PARAMETER; \ } \ } while (0) diff --git a/source4/libcli/wrepl/winsrepl.c b/source4/libcli/wrepl/winsrepl.c index 83cbe2877d..78ee2d165e 100644 --- a/source4/libcli/wrepl/winsrepl.c +++ b/source4/libcli/wrepl/winsrepl.c @@ -88,7 +88,8 @@ static NTSTATUS wrepl_finish_recv(void *private, DATA_BLOB packet_blob_in) DATA_BLOB blob; if (!req) { - DEBUG(1,("Received unexpected WINS packet of length %u!\n", packet_blob_in.length)); + DEBUG(1,("Received unexpected WINS packet of length %u!\n", + (unsigned)packet_blob_in.length)); return NT_STATUS_INVALID_NETWORK_RESPONSE; } @@ -108,7 +109,8 @@ static NTSTATUS wrepl_finish_recv(void *private, DATA_BLOB packet_blob_in) } if (DEBUGLVL(10)) { - DEBUG(10,("Received WINS packet of length %u\n", packet_blob_in.length)); + DEBUG(10,("Received WINS packet of length %u\n", + (unsigned)packet_blob_in.length)); NDR_PRINT_DEBUG(wrepl_packet, req->packet); } @@ -489,7 +491,8 @@ struct wrepl_request *wrepl_request_send(struct wrepl_socket *wrepl_socket, } if (DEBUGLVL(10)) { - DEBUG(10,("Sending WINS packet of length %u\n", blob.length)); + DEBUG(10,("Sending WINS packet of length %u\n", + (unsigned)blob.length)); NDR_PRINT_DEBUG(wrepl_packet, &wrap.packet); } |