diff --git a/ssh/mainchan.c b/ssh/mainchan.c index 04993620..5c1769ea 100644 --- a/ssh/mainchan.c +++ b/ssh/mainchan.c @@ -296,8 +296,8 @@ static void mainchan_request_response(Channel *chan, bool success) * If there's no remote_cmd2 configured, then we have no * fallback command, so we've run out of options. */ - ssh_sw_abort(mc->ppl->ssh, - "Server refused to start a shell/command"); + ssh_sw_abort_deferred(mc->ppl->ssh, + "Server refused to start a shell/command"); } return; } @@ -310,8 +310,8 @@ static void mainchan_request_response(Channel *chan, bool success) ssh_got_fallback_cmd(mc->ppl->ssh); mainchan_ready(mc); } else { - ssh_sw_abort(mc->ppl->ssh, - "Server refused to start a shell/command"); + ssh_sw_abort_deferred(mc->ppl->ssh, + "Server refused to start a shell/command"); } return; }