[libvirt] [PATCH] qemuBuildCommandLine: Don't add tlsPort if none set

Eric Blake eblake at redhat.com
Thu Mar 8 22:26:33 UTC 2012


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   eblake at redhat.com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 620 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20120308/1bba4d57/attachment-0001.sig>


More information about the libvir-list mailing list