qmp: Clean up qmp_query_spice() #ifndef !CONFIG_SPICE dummy
authorMarkus Armbruster <armbru@redhat.com>
Tue, 13 Jan 2015 14:56:11 +0000 (15:56 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Thu, 29 Jan 2015 09:01:54 +0000 (10:01 +0100)
commitad0ec14bad645d9c0402047e858ea323151c8e9b
treed54b38783f28e58f9a6e89283b50253102f5aa85
parent206addd58f251666f5b64d43957ddcba465c0ef1
qmp: Clean up qmp_query_spice() #ifndef !CONFIG_SPICE dummy

QMP command query-spice exists only #ifdef CONFIG_SPICE.  Due to QAPI
limitations, we need a dummy function anyway, but it's unreachable.

Our current dummy function goes out of its way to produce the exact
same error as the QMP core does for unknown commands.  Cute, but both
unclean and unnecessary.  Replace by straight abort().

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
qmp.c