From: Amos Jeffries Date: Tue, 30 Dec 2014 14:24:28 +0000 (-0800) Subject: ntlm_smb_lm_auth: fix compile errors after rev.13785 X-Git-Tag: merge-candidate-3-v1~403 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=548356206f34058aba6fdbb2a3f37cc8032fe17f;p=thirdparty%2Fsquid.git ntlm_smb_lm_auth: fix compile errors after rev.13785 --- 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; }