diff options
author | Tim Potter <tpot@samba.org> | 2003-11-06 22:11:08 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-11-06 22:11:08 +0000 |
commit | 9f154119e8788e9c3525b0a61c64326abd35bdf6 (patch) | |
tree | 414bdc61c7c31ec78380466cab989a1c2b814bd3 /source3/utils | |
parent | 75b246906323a9c6dba6c73041882d4ddebe7577 (diff) | |
download | samba-9f154119e8788e9c3525b0a61c64326abd35bdf6.tar.gz samba-9f154119e8788e9c3525b0a61c64326abd35bdf6.tar.bz2 samba-9f154119e8788e9c3525b0a61c64326abd35bdf6.zip |
Final round of printf warnings fixes for the moment.
(This used to be commit 0519a7022b4979c0e8ddd4907f4b858a59299c06)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/ntlm_auth.c | 4 | ||||
-rw-r--r-- | source3/utils/smbcontrol.c | 3 | ||||
-rw-r--r-- | source3/utils/smbfilter.c | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index 7cd7e0b087..13b9550347 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -1984,8 +1984,8 @@ enum { if ((challenge_len = strhex_to_str(challenge, strlen(hex_challenge), hex_challenge)) != 8) { - x_fprintf(x_stderr, "hex decode of %s failed (only got %u bytes)!\n", - hex_challenge, challenge_len); + x_fprintf(x_stderr, "hex decode of %s failed (only got %lu bytes)!\n", + hex_challenge, (unsigned long)challenge_len); exit(1); } opt_challenge = data_blob(challenge, challenge_len); diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c index 190627e2a5..eae1f97b58 100644 --- a/source3/utils/smbcontrol.c +++ b/source3/utils/smbcontrol.c @@ -203,7 +203,8 @@ static void profilelevel_cb(int msg_type, pid_t pid, void *buf, size_t len) num_replies++; if (len != sizeof(int)) { - fprintf(stderr, "invalid message length %d returned\n", len); + fprintf(stderr, "invalid message length %ld returned\n", + (unsigned long)len); return; } diff --git a/source3/utils/smbfilter.c b/source3/utils/smbfilter.c index 1a0d639f02..5d67c8fc7c 100644 --- a/source3/utils/smbfilter.c +++ b/source3/utils/smbfilter.c @@ -47,7 +47,7 @@ static void save_file(const char *fname, void *packet, size_t length) return; } close(fd); - printf("Wrote %d bytes to %s\n", length, fname); + printf("Wrote %ld bytes to %s\n", (unsigned long)length, fname); } static void filter_reply(char *buf) |