Skip to content

Commit 6922e00

Browse files
authored
Fix compile error with TLS_DEBUGGING (redis#13772)
1 parent 060ec35 commit 6922e00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ static void tlsHandleEvent(tls_connection *conn, int mask) {
633633
int ret, conn_error;
634634

635635
TLSCONN_DEBUG("tlsEventHandler(): fd=%d, state=%d, mask=%d, r=%d, w=%d, flags=%d",
636-
fd, conn->c.state, mask, conn->c.read_handler != NULL, conn->c.write_handler != NULL,
636+
conn->c.fd, conn->c.state, mask, conn->c.read_handler != NULL, conn->c.write_handler != NULL,
637637
conn->flags);
638638

639639
ERR_clear_error();

0 commit comments

Comments
 (0)