[libvirt] [PATCH 02/20] qemu_agent: Output newline at the end of the sync JSON message

Peter Krempa pkrempa at redhat.com
Tue Jul 30 13:05:37 UTC 2013


Although this isn't apparently needed for the guest agent itself, the
test I will be adding later depends on the newline as a separator of
messages to process.
---
 src/qemu/qemu_agent.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/qemu/qemu_agent.c b/src/qemu/qemu_agent.c
index 72bf211..1607e88 100644
--- a/src/qemu/qemu_agent.c
+++ b/src/qemu/qemu_agent.c
@@ -918,7 +918,7 @@ qemuAgentGuestSync(qemuAgentPtr mon)

     if (virAsprintf(&sync_msg.txBuffer,
                     "{\"execute\":\"guest-sync\", "
-                    "\"arguments\":{\"id\":%llu}}", id) < 0)
+                    "\"arguments\":{\"id\":%llu}}\n", id) < 0)
         return -1;

     sync_msg.txLength = strlen(sync_msg.txBuffer);
-- 
1.8.3.2




More information about the libvir-list mailing list