On 03/08/2012 06:30 AM, Michal Privoznik wrote:
> If user hasn't supplied any tlsPort we default to setting it
> to zero in our internal structure. However, when building command
> line we test it against -1 which is obviously wrong.
> ---
> src/qemu/qemu_command.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c
> index de2d4a1..ed82cc2 100644
> --- a/src/qemu/qemu_command.c
> +++ b/src/qemu/qemu_command.c
> @@ -5374,7 +5374,7 @@ qemuBuildCommandLine(virConnectPtr conn,
>
> virBufferAsprintf(&opt, "port=%u",
> def->graphics[0]->data.spice.port);
>
> - if (def->graphics[0]->data.spice.tlsPort != -1) {
> + if (def->graphics[0]->data.spice.tlsPort) {ACK. -- Eric Blake [email protected] +1-919-301-3266 Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
-- libvir-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/libvir-list
