mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-03 07:53:39 +02:00
gosxappinfo: fix typo in url_escape_hostname
This duplicated everything after the hostname. https://bugzilla.gnome.org/show_bug.cgi?id=734946
This commit is contained in:
committed by
Patrick Griffis
parent
c1f7e0eb78
commit
311d740f90
@@ -203,7 +203,7 @@ url_escape_hostname (const char *url)
|
||||
else
|
||||
host = g_strdup (host_start);
|
||||
|
||||
hostname = g_hostname_to_ascii (host_start);
|
||||
hostname = g_hostname_to_ascii (host);
|
||||
|
||||
ret = g_strconcat (scheme, "://", hostname, host_end, NULL);
|
||||
|
||||
|
Reference in New Issue
Block a user