Blame SOURCES/0001-Fix-default-TLS-versions.patch

3635cf
diff -up cups-2.2.6/cups/usersys.c.defaulttls cups-2.2.6/cups/usersys.c
3635cf
--- cups-2.2.6/cups/usersys.c.defaulttls	2018-09-03 12:10:36.111230611 +0200
3635cf
+++ cups-2.2.6/cups/usersys.c	2018-09-03 12:12:41.307074414 +0200
3635cf
@@ -1166,11 +1166,15 @@ cups_init_client_conf(
3635cf
 
3635cf
   memset(cc, 0, sizeof(_cups_client_conf_t));
3635cf
 
3635cf
-  cc->encryption     = (http_encryption_t)-1;
3635cf
-  cc->trust_first    = -1;
3635cf
-  cc->any_root       = -1;
3635cf
-  cc->expired_certs  = -1;
3635cf
-  cc->validate_certs = -1;
3635cf
+#ifdef HAVE_SSL
3635cf
+  cc->ssl_min_version = _HTTP_TLS_1_0;
3635cf
+  cc->ssl_max_version = _HTTP_TLS_MAX;
3635cf
+#endif /* HAVE_SSL */
3635cf
+  cc->encryption      = (http_encryption_t)-1;
3635cf
+  cc->trust_first     = -1;
3635cf
+  cc->any_root        = -1;
3635cf
+  cc->expired_certs   = -1;
3635cf
+  cc->validate_certs  = -1;
3635cf
 
3635cf
  /*
3635cf
   * Load settings from the org.cups.PrintingPrefs plist (which trump