]> 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:41 +0000 (10:17 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 14 Nov 2018 15:17:41 +0000 (10:17 -0500)
cups/auth.c

index 0a490948c8221756c007e0731df261f19624721e..b97a6b61c73978c7566447e40b88ddc897463e4a 100644 (file)
@@ -442,7 +442,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);