Commit 4644561f authored by Greg Williams's avatar Greg Williams
Browse files

Added missing break to switch statement that can cause an issue in the SSL listener.

parent ec89a121
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -412,6 +412,7 @@ static bool socket_read_ssl(struct bus *b, listener *l, int pfd_i, connection_in
                    print_SSL_error(b, ci, 1, "SSL_ERROR_SYSCALL");
                    set_error_for_socket(l, pfd_i, ci->fd, RX_ERROR_READ_FAILURE);
                }
                break;
            }
            case SSL_ERROR_ZERO_RETURN:
            {