Commit 2c9498c3 authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

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: default avatarGerd Hoffmann <kraxel@redhat.com>
Reviewed-by: default avatarEric Blake <eblake@redhat.com>
Message-id: 20180507095539.19584-3-kraxel@redhat.com
parent 776d1344
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -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);
    }