mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Make the two branches of tor_tls_used_v1_handshake into one.
(Coverity thinks that "if (a) X; else X;" is probably a bug.) [Coverity CID 1232086]
This commit is contained in:
parent
916fba2243
commit
2cf229ab60
@ -2611,16 +2611,20 @@ check_no_tls_errors_(const char *fname, int line)
|
||||
int
|
||||
tor_tls_used_v1_handshake(tor_tls_t *tls)
|
||||
{
|
||||
#if defined(V2_HANDSHAKE_SERVER) && defined(V2_HANDSHAKE_CLIENT)
|
||||
return ! tls->wasV2Handshake;
|
||||
#else
|
||||
if (tls->isServer) {
|
||||
#ifdef V2_HANDSHAKE_SERVER
|
||||
# ifdef V2_HANDSHAKE_SERVER
|
||||
return ! tls->wasV2Handshake;
|
||||
#endif
|
||||
# endif
|
||||
} else {
|
||||
#ifdef V2_HANDSHAKE_CLIENT
|
||||
# ifdef V2_HANDSHAKE_CLIENT
|
||||
return ! tls->wasV2Handshake;
|
||||
#endif
|
||||
# endif
|
||||
}
|
||||
return 1;
|
||||
#endif
|
||||
}
|
||||
|
||||
/** Return true iff <b>name</b> is a DN of a kind that could only
|
||||
|
Loading…
Reference in New Issue
Block a user