Skip to content
Snippets Groups Projects
Commit bb693fd1 authored by Mark Valence's avatar Mark Valence
Browse files

Bug fix: re-used Connection have TLS value for previous conn.

parent a0097fe1
No related branches found
No related tags found
No related merge requests found
......@@ -436,6 +436,9 @@ long connection_init(
if ( use_tls ) {
c->c_is_tls = 1;
c->c_needs_tls_accept = 1;
} else {
c->c_is_tls = 0;
c->c_needs_tls_accept = 0;
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment