View | Details | Raw Unified | Return to bug 62944
Collapse All | Expand All

(-)src/sslcontext.c.orig (-2 / +1 lines)
Lines 287-294 Link Here
287
#ifdef HAVE_TLSV1_3
287
#ifdef HAVE_TLSV1_3
288
    if (prot == TLS1_3_VERSION && protocol & SSL_PROTOCOL_TLSV1_2) {
288
    if (prot == TLS1_3_VERSION && protocol & SSL_PROTOCOL_TLSV1_2) {
289
        prot = TLS1_2_VERSION;
289
        prot = TLS1_2_VERSION;
290
    } else
290
    }
291
/* NOTE the dangling else above: take care to preserve it */
292
#endif
291
#endif
293
    if (prot == TLS1_2_VERSION && protocol & SSL_PROTOCOL_TLSV1_1) {
292
    if (prot == TLS1_2_VERSION && protocol & SSL_PROTOCOL_TLSV1_1) {
294
        prot = TLS1_1_VERSION;
293
        prot = TLS1_1_VERSION;

Return to bug 62944