diff options
author | Markus Armbruster <armbru@redhat.com> | 2015-03-12 07:45:10 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2015-06-09 07:40:23 +0200 |
commit | 1640b200d53e3d981f12a192fe84b7bb7958c065 (patch) | |
tree | bea7e4594fee170e218d8b83d43815649551a4b4 /ui | |
parent | 8809cfc38e4e93884d664bb00108fc71b423f589 (diff) | |
download | qemu-1640b200d53e3d981f12a192fe84b7bb7958c065.tar.gz qemu-1640b200d53e3d981f12a192fe84b7bb7958c065.tar.bz2 qemu-1640b200d53e3d981f12a192fe84b7bb7958c065.zip |
QemuOpts: Drop qemu_opt_foreach() parameter abort_on_failure
When the argument is non-zero, qemu_opt_foreach() stops on callback
returning non-zero, and returns that value.
When the argument is zero, it doesn't stop, and returns the callback's
value from the last iteration.
The two callers that pass zero could just as well pass one:
* qemu_spice_init()'s callback add_channel() either returns zero or
exit()s.
* config_write_opts()'s callback config_write_opt() always returns
zero.
Drop the parameter, and always stop.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/spice-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/spice-core.c b/ui/spice-core.c index 2e8384e653..60818d9960 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -782,7 +782,7 @@ void qemu_spice_init(void) spice_server_set_playback_compression (spice_server, qemu_opt_get_bool(opts, "playback-compression", 1)); - qemu_opt_foreach(opts, add_channel, &tls_port, 0); + qemu_opt_foreach(opts, add_channel, &tls_port); spice_server_set_name(spice_server, qemu_name); spice_server_set_uuid(spice_server, qemu_uuid); |