]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix compile error.
authorMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 14 Nov 2018 15:17:56 +0000 (10:17 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 14 Nov 2018 15:17:56 +0000 (10:17 -0500)
cups/auth.c

index 5b650ae34987057468b798a66c428c22c4006379..e4328e025bad91e72c3c338d67631becb81733b2 100644 (file)
@@ -447,7 +447,7 @@ _cupsSetNegotiateAuthString(
     */
 
     int authsize = 10 +                        /* "Negotiate " */
-                  (int)((output_token.length * 4 / 3 + 3) & ~3) + 1;
+                  (((int)output_token.length * 4 / 3 + 3) & ~3) + 1;
                                        /* Base64 + nul */
 
     httpSetAuthString(http, NULL, NULL);