summaryrefslogtreecommitdiff
blob: 82cb9c812ebe8e1697412d4beb79e5e2bc1be28c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From 0292aacdf0aa57d03f2a3ab7e53cf650e6f29389 Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Sat, 23 Apr 2022 22:33:31 +0800
Subject: [PATCH] Fix X11 build failure, use DROPBEAR_PRIO_LOWDELAY

---
 svr-x11fwd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/svr-x11fwd.c b/svr-x11fwd.c
index 353cb12e..5d9e6a96 100644
--- a/svr-x11fwd.c
+++ b/svr-x11fwd.c
@@ -206,7 +206,7 @@ void x11cleanup(struct ChanSess *chansess) {
 }
 
 static int x11_inithandler(struct Channel *channel) {
-	channel->prio = DROPBEAR_CHANNEL_PRIO_INTERACTIVE;
+	channel->prio = DROPBEAR_PRIO_LOWDELAY;
 	return 0;
 }