This resolves issue, which prevented handling certain types
of TLS1.3-only signatures, depending on the order of enabled
protocols.
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
tlsmax = version_to_entry(priority_cache->protocol.priority[i]);
if (tlsmax)
tls_sig_sem |= tlsmax->tls_sig_sem;
- if (dtlsmax)
- break;
} else { /* dtls */
dtlsmax = version_to_entry(priority_cache->protocol.priority[i]);
if (dtlsmax)
tls_sig_sem |= dtlsmax->tls_sig_sem;
- if (tlsmax)
- break;
}
}