Commit 492909f6 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 0f6edf77
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -413,6 +413,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:
            {