[Spice-devel] [PATCHv2 08/10] session: prettify query parameters
Christophe Fergeau
cfergeau at redhat.com
Tue Jan 27 07:57:18 PST 2015
On Tue, Jan 27, 2015 at 02:53:21PM +0100, Marc-André Lureau wrote:
> Use & as parameters separators, this is more conventionnal. Remove
'conventional' (common/usual ?)
ACK otherwise
> trailing one, no further parameters are useful anyway.
> ---
> gtk/spice-session.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gtk/spice-session.c b/gtk/spice-session.c
> index a13d654..9738e69 100644
> --- a/gtk/spice-session.c
> +++ b/gtk/spice-session.c
> @@ -365,10 +365,10 @@ static gchar* spice_uri_create(SpiceSession *session)
> g_string_append(str, s->host);
> g_string_append(str, "?");
> if (s->port != NULL) {
> - g_string_append_printf(str, "port=%s;", s->port);
> + g_string_append_printf(str, "port=%s&", s->port);
> }
> if (s->tls_port != NULL) {
> - g_string_append_printf(str, "tls-port=%s;", s->tls_port);
> + g_string_append_printf(str, "tls-port=%s", s->tls_port);
> }
> return g_string_free(str, FALSE);
> }
> --
> 2.1.0
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.freedesktop.org/archives/spice-devel/attachments/20150127/4d0603a2/attachment.sig>
More information about the Spice-devel
mailing list