diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2018-05-07 11:55:37 +0200 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-05-15 10:37:40 +0200 |
| commit | 2c9498c3e44cd5574df3baaebfb9d5a095252205 (patch) | |
| tree | 9d2a604449ec688688f6dbac728735b413c863bb | |
| parent | 776d1344bd0566f412d5bc063e753a6b98530bcf (diff) | |
| download | focaccia-qemu-2c9498c3e44cd5574df3baaebfb9d5a095252205.tar.gz focaccia-qemu-2c9498c3e44cd5574df3baaebfb9d5a095252205.zip | |
ui: switch trivial displays to qapi parser
Drop the option-less display types (egl-headless, curses, none) from parse_display(), so they'll be handled by parse_display_qapi(). Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20180507095539.19584-3-kraxel@redhat.com
| -rw-r--r-- | vl.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vl.c b/vl.c index c56f7f8046..6b8f946d58 100644 --- a/vl.c +++ b/vl.c @@ -2185,10 +2185,6 @@ static void parse_display(const char *p) error_report("VNC requires a display argument vnc=<display>"); exit(1); } - } else if (strstart(p, "egl-headless", &opts)) { - dpy.type = DISPLAY_TYPE_EGL_HEADLESS; - } else if (strstart(p, "curses", &opts)) { - dpy.type = DISPLAY_TYPE_CURSES; } else if (strstart(p, "gtk", &opts)) { dpy.type = DISPLAY_TYPE_GTK; while (*opts) { @@ -2221,8 +2217,6 @@ static void parse_display(const char *p) } opts = nextopt; } - } else if (strstart(p, "none", &opts)) { - dpy.type = DISPLAY_TYPE_NONE; } else { parse_display_qapi(p); } |