Re: [PATCH virt-viewer] Fix recent --spice-controller regression, add error message

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, Mar 30, 2012 at 8:38 AM, Hans de Goede <hdegoede@xxxxxxxxxx> wrote:
> Looks good, ack.
>
> One remark though (just a remark as the behavior is
> from before this test). Wouldn't it be better to error
> out when g_strv_length(args) != 1, rather then showing
> the connection dialog as if no args were given?

You mean if g_strv_length(args) > 1, error out? Yes, definetely,
something like that?

    if (!args || g_strv_length(args) == 0) {
        if (connect_dialog(&uri) != 0)
            goto cleanup;
    } else if (g_strv_length(args) > 1) {
        g_printerr(_("Error: you must specify a single URI\n"));
    } else {
        uri = g_strdup(args[0]);
    }

-- 
Marc-André Lureau


[Index of Archives]     [Linux Virtualization]     [KVM Development]     [CentOS Virtualization]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]     [Video 4 Linux]

  Powered by Linux