]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
ntlm_smb_lm_auth: fix compile errors after rev.13785
authorAmos Jeffries <squid3@treenet.co.nz>
Tue, 30 Dec 2014 14:24:28 +0000 (06:24 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Tue, 30 Dec 2014 14:24:28 +0000 (06:24 -0800)
helpers/ntlm_auth/smb_lm/ntlm_smb_lm_auth.cc

index d084a0454545f496f2bb383a2c8e78323cb021c0..cb73c9b1bebadb7f2b2622f0b3f11a73a850f95f 100644 (file)
@@ -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;
     }