blob: 042dccbb94af9798bc4104d24bca907fa75e3a52 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 64292091fe3e8ea7c9bfe74af730b2ff5428bf10 Mon Sep 17 00:00:00 2001
2From: Matt Johnston <matt@ucc.asn.au>
3Date: Sat, 23 Apr 2022 22:33:31 +0800
4Subject: [PATCH] Fix X11 build failure, use DROPBEAR_PRIO_LOWDELAY
5
6Upstream-Status: Backport
7
8Signed-off-by: Daniel Gomez <daniel@qtec.com>
9---
10 svr-x11fwd.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/svr-x11fwd.c b/svr-x11fwd.c
14index 353cb12..5d9e6a9 100644
15--- a/svr-x11fwd.c
16+++ b/svr-x11fwd.c
17@@ -206,7 +206,7 @@ void x11cleanup(struct ChanSess *chansess) {
18 }
19
20 static int x11_inithandler(struct Channel *channel) {
21- channel->prio = DROPBEAR_CHANNEL_PRIO_INTERACTIVE;
22+ channel->prio = DROPBEAR_PRIO_LOWDELAY;
23 return 0;
24 }
25
26--
272.35.1
28