mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-10 14:57:42 +00:00
qemu_agent: Output newline at the end of the sync JSON message
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.
This commit is contained in:
parent
cc4df6fd5b
commit
2e38753fb0
@ -918,7 +918,7 @@ qemuAgentGuestSync(qemuAgentPtr mon)
|
|||||||
|
|
||||||
if (virAsprintf(&sync_msg.txBuffer,
|
if (virAsprintf(&sync_msg.txBuffer,
|
||||||
"{\"execute\":\"guest-sync\", "
|
"{\"execute\":\"guest-sync\", "
|
||||||
"\"arguments\":{\"id\":%llu}}", id) < 0)
|
"\"arguments\":{\"id\":%llu}}\n", id) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
sync_msg.txLength = strlen(sync_msg.txBuffer);
|
sync_msg.txLength = strlen(sync_msg.txBuffer);
|
||||||
|
Loading…
Reference in New Issue
Block a user