1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-02-02 15:07:36 -05:00

Update: Marked DEBUG line as DDEBUG

This commit is contained in:
Philipp Schafft 2024-10-22 23:19:21 +00:00
parent 0797b2862a
commit 829b8ee4f7

View File

@ -252,7 +252,7 @@ ssize_t tls_read(tls_t *tls, void *buffer, size_t len)
if (ret <= 0 && !tls->error) {
int error = SSL_get_error(tls->ssl, ret);
ICECAST_LOG_DEBUG("Zero read on TLS (tls=%p, ret=%i, error=%i)", tls, ret, error);
ICECAST_LOG_DDEBUG("Zero read on TLS (tls=%p, ret=%i, error=%i)", tls, ret, error);
if (error == SSL_ERROR_SYSCALL || error == SSL_ERROR_SSL)
tls->error = true;
}