298cd8eaa2
Autogenerated from rename-patch.py (http://patchwork.ozlabs.org/patch/403345) Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 0d3767853ca179ce04a9b312d7a30d33d1266a3b Mon Sep 17 00:00:00 2001
|
|
From: Axel Lin <axel.lin@ingics.com>
|
|
Date: Thu, 10 Oct 2013 12:36:40 +0800
|
|
Subject: [PATCH] red_tunnel_worker: Fix build error due to missing monitor_latency argument
|
|
|
|
Fix missing monitor_latency argument in red_channel_client_create call.
|
|
|
|
Signed-off-by: Axel Lin <axel.lin@ingics.com>
|
|
---
|
|
server/red_tunnel_worker.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/server/red_tunnel_worker.c b/server/red_tunnel_worker.c
|
|
index 97dcafd..6781d73 100644
|
|
--- a/server/red_tunnel_worker.c
|
|
+++ b/server/red_tunnel_worker.c
|
|
@@ -3417,7 +3417,7 @@ static void handle_tunnel_channel_link(RedChannel *channel, RedClient *client,
|
|
}
|
|
|
|
tcc = (TunnelChannelClient*)red_channel_client_create(sizeof(TunnelChannelClient),
|
|
- channel, client, stream,
|
|
+ channel, client, stream, FALSE,
|
|
0, NULL, 0, NULL);
|
|
if (!tcc) {
|
|
return;
|
|
--
|
|
1.8.1.2
|
|
|