From b1a4db27278fd60e2bb608395829302823c0603e Mon Sep 17 00:00:00 2001 From: Alex Young Date: Tue, 24 Jul 2012 14:19:53 +0100 Subject: [PATCH] Further merge fail fix The reversal of the control protocol lines for the mirror command wasn't complete. --- src/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/control.c b/src/control.c index dcd5ee5..c3f459b 100644 --- a/src/control.c +++ b/src/control.c @@ -350,7 +350,7 @@ int control_mirror(struct control_client* client, int linesc, char** lines) } if (linesc > 4) { - max_Bps = atoi(lines[2]); + max_Bps = atoi(lines[4]); }