]> git.proxmox.com Git - mirror_qemu.git/commit - ui/spice-core.c
spice: abort on invalid streaming cmdline params
authorChristophe Fergeau <cfergeau@redhat.com>
Mon, 13 Aug 2012 08:32:32 +0000 (10:32 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Wed, 5 Sep 2012 15:11:55 +0000 (17:11 +0200)
commit835cab85ad83ed8dfe1c13243aeda5959b153e3e
tree29662388720550a5aad486978aa52840a12cdabe
parent8db972cfa469b4e4afd9c65e54e796b83b5ce3a2
spice: abort on invalid streaming cmdline params

When parsing its command line parameters, spice aborts when it
finds unexpected values, except for the 'streaming-video' option.
This happens because the parsing of the parameters for this option
is done using the 'name2enum' helper, which does not error out
on unknown values. Using the 'parse_name' helper makes sure we
error out in this case. Looking at git history, the use of
'name2enum' instead of 'parse_name' seems to have been an oversight,
so let's change to that now.

Fixes rhbz#831708

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
ui/spice-core.c