[Spice-devel] [PATCHv2 08/10] session: prettify query parameters
Marc-André Lureau
marcandre.lureau at redhat.com
Tue Jan 27 05:53:21 PST 2015
Use & as parameters separators, this is more conventionnal. Remove
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
More information about the Spice-devel
mailing list