Revert premature want_connect fix.

This commit is contained in:
Roger A. Light 2021-06-08 17:02:38 +01:00
parent 42163634c7
commit 8416f928df

View File

@ -236,7 +236,11 @@ int packet__write(struct mosquitto *mosq)
#endif
state = mosquitto__get_state(mosq);
#if defined(WITH_TLS) && !defined(WITH_BROKER)
if(state == mosq_cs_connect_pending || mosq->want_connect){
#else
if(state == mosq_cs_connect_pending){
#endif
pthread_mutex_unlock(&mosq->current_out_packet_mutex);
return MOSQ_ERR_SUCCESS;
}