summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2022-04-23 22:33:31 +0800
committerMatt Johnston <matt@ucc.asn.au>2022-04-23 22:33:31 +0800
commit0292aacdf0aa57d03f2a3ab7e53cf650e6f29389 (patch)
tree6b61251345db5856bd30133f40007c76f9f4f03e
parentb8669b063bd2fc1906a13fb4b50c8b4697bf49ce (diff)
downloaddropbear-0292aacdf0aa57d03f2a3ab7e53cf650e6f29389.tar.gz
Fix X11 build failure, use DROPBEAR_PRIO_LOWDELAY
-rw-r--r--svr-x11fwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/svr-x11fwd.c b/svr-x11fwd.c
index 353cb12..5d9e6a9 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;
}