You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
833 B
25 lines
833 B
diff -up cups-2.2.6/cups/usersys.c.defaulttls cups-2.2.6/cups/usersys.c
|
|
--- cups-2.2.6/cups/usersys.c.defaulttls 2018-09-03 12:10:36.111230611 +0200
|
|
+++ cups-2.2.6/cups/usersys.c 2018-09-03 12:12:41.307074414 +0200
|
|
@@ -1166,11 +1166,15 @@ cups_init_client_conf(
|
|
|
|
memset(cc, 0, sizeof(_cups_client_conf_t));
|
|
|
|
- cc->encryption = (http_encryption_t)-1;
|
|
- cc->trust_first = -1;
|
|
- cc->any_root = -1;
|
|
- cc->expired_certs = -1;
|
|
- cc->validate_certs = -1;
|
|
+#ifdef HAVE_SSL
|
|
+ cc->ssl_min_version = _HTTP_TLS_1_0;
|
|
+ cc->ssl_max_version = _HTTP_TLS_MAX;
|
|
+#endif /* HAVE_SSL */
|
|
+ cc->encryption = (http_encryption_t)-1;
|
|
+ cc->trust_first = -1;
|
|
+ cc->any_root = -1;
|
|
+ cc->expired_certs = -1;
|
|
+ cc->validate_certs = -1;
|
|
|
|
/*
|
|
* Load settings from the org.cups.PrintingPrefs plist (which trump
|