Revert premature want_connect fix.

pull/2255/head
Roger A. Light 4 years ago
parent 42163634c7
commit 8416f928df

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

Loading…
Cancel
Save