Fix confusing message on TLS certificate verification.

Closes #2746. Thanks to Akos Vandra-Meyer.
fixes
Roger A. Light 3 years ago
parent 1195dd991e
commit 1bf753e773

@ -15,6 +15,7 @@ Client library:
Clients:
- Fix incorrect topic-alias property value in mosquitto_sub json output.
- Fix confusing message on TLS certificate verification. Closes #2746.
2.0.15 - 2022-08-16

@ -268,6 +268,8 @@ int packet__write(struct mosquitto *mosq)
return MOSQ_ERR_CONN_LOST;
case COMPAT_EINTR:
return MOSQ_ERR_SUCCESS;
case EPROTO:
return MOSQ_ERR_TLS;
default:
return MOSQ_ERR_ERRNO;
}

Loading…
Cancel
Save