diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-10-10 17:30:08 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-10-19 10:39:59 -0200 |
commit | 7f3850c2629d197fa339ff877824d91bf77f3a49 (patch) | |
tree | 26a55822ff05dda0298140b66f4b783f2b1bb6ab /qmp-commands.hx | |
parent | cfce6d8934243871c4dc6d0c5248b0b27a1b8d80 (diff) |
QMP: Fix blockdev-snapshot-sync doc example
Fix wrong command name.
Reported-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qmp-commands.hx')
-rw-r--r-- | qmp-commands.hx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index 9c11e87ddb..4328e8b86c 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -710,10 +710,10 @@ Arguments: Example: --> { "execute": "blockdev-snapshot", "arguments": { "device": "ide-hd0", - "snapshot-file": - "/some/place/my-image", - "format": "qcow2" } } +-> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0", + "snapshot-file": + "/some/place/my-image", + "format": "qcow2" } } <- { "return": {} } EQMP |