am d530592: libsysutils: Send command arguments to the command, not the 

Merge commit 'd530592848985ba4edeafeb413eb5ff58c138eab'

* commit 'd530592848985ba4edeafeb413eb5ff58c138eab':
  libsysutils: Send command arguments to the command, not the command again :P
diff --git a/libsysutils/src/FrameworkListener.cpp b/libsysutils/src/FrameworkListener.cpp
index 2a96e9a..eb96c9a 100644
--- a/libsysutils/src/FrameworkListener.cpp
+++ b/libsysutils/src/FrameworkListener.cpp
@@ -73,7 +73,8 @@
         FrameworkCommand *c = *i;
 
         if (!strcmp(cm, c->getCommand())) {
-            if (c->runCommand(cli, cmd)) {
+            cm += strlen(cm) +1;
+            if (c->runCommand(cli, cm)) {
                 LOGW("Handler '%s' error (%s)", c->getCommand(), strerror(errno));
             }
             return;