Skip to content

Commit

Permalink
Merge pull request #1962 from LordSimal/3.0
Browse files Browse the repository at this point in the history
fix syntax error
  • Loading branch information
terrafrost committed Nov 23, 2023
2 parents 8ecd156 + ad968b2 commit f71cc09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpseclib/Net/SSH2.php
Expand Up @@ -3437,7 +3437,7 @@ protected function reset_connection($reason)
$this->retry_connect = true;
$this->get_seq_no = $this->send_seq_no = 0;
$this->channel_status = [];
$this->channel_id_last_interactive = 0
$this->channel_id_last_interactive = 0;
}

/**
Expand Down

1 comment on commit f71cc09

@terrafrost
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #1962. Introduced by code changes made for #1961.

Please sign in to comment.