From 468325255d8a5d40a28fbcc6d893a4558dc7cc23 Mon Sep 17 00:00:00 2001 From: Corey Minyard Date: Tue, 30 Jan 2024 08:02:51 -0600 Subject: [PATCH] ax25: Don't stop t2 when sending a REJ We still need it running to time things out. Signed-off-by: Corey Minyard --- lib/gensio_ax25.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/gensio_ax25.c b/lib/gensio_ax25.c index 766b58ef..73442946 100644 --- a/lib/gensio_ax25.c +++ b/lib/gensio_ax25.c @@ -3187,7 +3187,6 @@ ax25_chan_handle_data(struct ax25_chan *chan, uint8_t ns, uint8_t pf, } else { chan->in_rej = true; ax25_chan_send_rsp(chan, X25_REJ, pf); - ax25_chan_stop_t2(chan); chan->ack_pending = 0; } }