From 58084f6d7a1ccb05dacb3c9c4244e74b40ec3245 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 2 Jun 2013 22:38:20 -0400 Subject: [PATCH] Sync - Modifed the column 0 task indicator from '[' to '{', for backlog.data lines. --- src/commands/CmdSync.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/CmdSync.cpp b/src/commands/CmdSync.cpp index 1ca5af0be..8d44cf697 100644 --- a/src/commands/CmdSync.cpp +++ b/src/commands/CmdSync.cpp @@ -91,7 +91,7 @@ int CmdSync::execute (std::string& output) split (lines, payload, "\n"); std::vector ::iterator i; for (i = lines.begin (); i != lines.end (); ++i) - if ((*i)[0] == '[') + if ((*i)[0] == '{') ++upload_count; } @@ -132,7 +132,7 @@ int CmdSync::execute (std::string& output) std::vector ::iterator line; for (line = lines.begin (); line != lines.end (); ++line) { - if ((*line)[0] == '[') + if ((*line)[0] == '{') { ++download_count;