qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 1/1] hmp: allow "bool" parameter to be optional
@ 2012-08-07 13:03 Pavel Hrdina
  2012-08-07 13:52 ` Andreas Färber
  0 siblings, 1 reply; 5+ messages in thread
From: Pavel Hrdina @ 2012-08-07 13:03 UTC (permalink / raw)
  To: qemu-devel; +Cc: Pavel Hrdina


Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
---
 monitor.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/monitor.c b/monitor.c
index bbf30e6..2b3583c 100644
--- a/monitor.c
+++ b/monitor.c
@@ -3778,6 +3778,9 @@ static const mon_cmd_t *monitor_parse_command(Monitor *mon,
                     val = 1;
                 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
                     val = 0;
+                } else if (*typestr == '?') {
+                    typestr++;
+                    break;
                 } else {
                     monitor_printf(mon, "Expected 'on' or 'off'\n");
                     goto fail;
-- 
1.7.11.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-08-07 14:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07 13:03 [Qemu-devel] [PATCH 1/1] hmp: allow "bool" parameter to be optional Pavel Hrdina
2012-08-07 13:52 ` Andreas Färber
2012-08-07 13:58   ` Pavel Hrdina
2012-08-07 14:36     ` Markus Armbruster
2012-08-07 14:37       ` Pavel Hrdina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).