Skip to content

Commit

Permalink
ssh: Fix error in ssh_dbg_off(tcp)
Browse files Browse the repository at this point in the history
  • Loading branch information
HansN committed Aug 8, 2022
1 parent c73016f commit e94c44f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ssh/src/ssh_connection_handler.erl
Original file line number Diff line number Diff line change
Expand Up @@ -2077,7 +2077,7 @@ ssh_dbg_off(disconnect) -> dbg:ctpl(?MODULE, send_disconnect, 7);
ssh_dbg_off(terminate) -> dbg:ctpg(?MODULE, terminate, 3);
ssh_dbg_off(tcp) -> dbg:ctpg(?MODULE, handle_event, 4), % How to avoid cancelling 'connection_events' ?
dbg:ctpl(?MODULE, send_bytes, 2),
dbg:ctpg(?MODULE, close_transport, 1);
dbg:ctpl(?MODULE, close_transport, 1);
ssh_dbg_off(renegotiation) -> dbg:ctpl(?MODULE, init_renegotiate_timers, 3),
dbg:ctpl(?MODULE, pause_renegotiate_timers, 3),
dbg:ctpl(?MODULE, check_data_rekeying_dbg, 2),
Expand Down

0 comments on commit e94c44f

Please sign in to comment.