summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2010-11-24 16:06:04 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-11-24 16:15:13 +0000
commitd8e180b6f802cccea36fee81714d82203cba1f5b (patch)
tree3101729a1f4e70cc10187d705571814e0dc0911e
parent825053fad9ac2b08ef47bb21a1dc29b0ca7be77f (diff)
protocol: when hitting a special parameter, just skip it, not all the others too
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
-rw-r--r--src/protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol.c b/src/protocol.c
index 1c8bb57..45d960b 100644
--- a/src/protocol.c
+++ b/src/protocol.c
@@ -314,7 +314,7 @@ new_connection (TpBaseProtocol *protocol,
if (tpsip_params[i].offset == PARAM_SET_SEPARATELY)
{
DEBUG ("Parameter %s is handled specially", tpsip_params[i].name);
- break;
+ continue;
}
g_assert (tpsip_params[i].offset == PARAM_EASY);