summaryrefslogtreecommitdiffstats
path: root/server/inputs_channel.c
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2011-10-05 09:05:13 +0200
committerYonit Halperin <yhalperi@redhat.com>2011-11-02 11:19:48 +0200
commit0bf518cd3daad526a16468e82c1d6c715535e9ba (patch)
tree937b1d33c82d86a5ac391335069e3115d6a40bef /server/inputs_channel.c
parentbd8771adbcf3ff34d14333cf874191e8d105f612 (diff)
downloadspice-0bf518cd3daad526a16468e82c1d6c715535e9ba.tar.gz
spice-0bf518cd3daad526a16468e82c1d6c715535e9ba.tar.xz
spice-0bf518cd3daad526a16468e82c1d6c715535e9ba.zip
server: set & test channel capabilities in red_channel
The code for setting and testing channel capabilities was unnecessarily duplicated. Now it is in red_channel. RedsChannel was dropped from Reds; It was used only for holding the channels common capabilities, which are now held in RedChannel.
Diffstat (limited to 'server/inputs_channel.c')
-rw-r--r--server/inputs_channel.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/inputs_channel.c b/server/inputs_channel.c
index 24fc6211..c8b42e3e 100644
--- a/server/inputs_channel.c
+++ b/server/inputs_channel.c
@@ -496,7 +496,9 @@ static void inputs_connect(RedChannel *channel, RedClient *client,
icc = (InputsChannelClient*)red_channel_client_create(sizeof(InputsChannelClient),
channel,
client,
- stream);
+ stream,
+ num_common_caps, common_caps,
+ num_caps, caps);
icc->motion_count = 0;
inputs_pipe_add_init(&icc->base);
}