-CHANGES - 2.2.5 - 2017-07-19
+CHANGES - 2.2.5 - 2017-07-23
============================
CHANGES IN CUPS V2.2.5
printers (rdar://33250434)
- Fixed the `cups.strings` file that is used on macOS (rdar://33287650)
- CUPS now sends the `Date` HTTP header in IPP requests (rdar://33302034)
+- Fixed the DenyCBC option when using GNU TLS.
CHANGES IN CUPS V2.2.4
int status; /* Status of handshake */
gnutls_certificate_credentials_t *credentials;
/* TLS credentials */
- char priority_string[1024];
+ char priority_string[2048];
/* Priority string */
strlcat(priority_string, ":!ANON-DH", sizeof(priority_string));
if (!(tls_options & _HTTP_TLS_DENY_CBC))
- strlcat(priority_string, ":!CBC", sizeof(priority_string));
+ strlcat(priority_string, ":!AES-128-CBC:!AES-256-CBC:!CAMELLIA-128-CBC:!CAMELLIA-256-CBC:!3DES-CBC", sizeof(priority_string));
#ifdef HAVE_GNUTLS_PRIORITY_SET_DIRECT
gnutls_priority_set_direct(http->tls, priority_string, NULL);