From 548356206f34058aba6fdbb2a3f37cc8032fe17f Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Tue, 30 Dec 2014 06:24:28 -0800 Subject: [PATCH] ntlm_smb_lm_auth: fix compile errors after rev.13785 --- helpers/ntlm_auth/smb_lm/ntlm_smb_lm_auth.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/ntlm_auth/smb_lm/ntlm_smb_lm_auth.cc b/helpers/ntlm_auth/smb_lm/ntlm_smb_lm_auth.cc index d084a04545..cb73c9b1be 100644 --- a/helpers/ntlm_auth/smb_lm/ntlm_smb_lm_auth.cc +++ b/helpers/ntlm_auth/smb_lm/ntlm_smb_lm_auth.cc @@ -197,7 +197,7 @@ make_challenge(char *domain, char *domain_controller) // validations later will expect to be limited to that size. static uint8_t b64buf[HELPER_INPUT_BUFFER-10]; /* 10 for other line fields, delimiters and terminator */ if (base64_encode_len(len) < sizeof(b64buf)-1) { - debug("base64 encoding of the token challenge will exceed %d bytes", sizeof(b64buf)); + debug("base64 encoding of the token challenge will exceed %" PRIuSIZE " bytes", sizeof(b64buf)); return NULL; } -- 2.47.2