mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
glib/gconvert.c (g_filename_from_uri): Replace `is contains'
by `contains' in two error messages. (#60395)
This commit is contained in:
parent
5abd187398
commit
545a6a7616
@ -1,3 +1,9 @@
|
||||
|
||||
Fri Sep 14 20:34:27 2001 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gconvert.c (g_filename_from_uri): Replace `is contains'
|
||||
by `contains' in two error messages. (#60395)
|
||||
|
||||
2001-09-10 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.h glib/giochannel.c: Added a length argument
|
||||
|
@ -1,3 +1,9 @@
|
||||
|
||||
Fri Sep 14 20:34:27 2001 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gconvert.c (g_filename_from_uri): Replace `is contains'
|
||||
by `contains' in two error messages. (#60395)
|
||||
|
||||
2001-09-10 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.h glib/giochannel.c: Added a length argument
|
||||
|
@ -1,3 +1,9 @@
|
||||
|
||||
Fri Sep 14 20:34:27 2001 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gconvert.c (g_filename_from_uri): Replace `is contains'
|
||||
by `contains' in two error messages. (#60395)
|
||||
|
||||
2001-09-10 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.h glib/giochannel.c: Added a length argument
|
||||
|
@ -1,3 +1,9 @@
|
||||
|
||||
Fri Sep 14 20:34:27 2001 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gconvert.c (g_filename_from_uri): Replace `is contains'
|
||||
by `contains' in two error messages. (#60395)
|
||||
|
||||
2001-09-10 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.h glib/giochannel.c: Added a length argument
|
||||
|
@ -1,3 +1,9 @@
|
||||
|
||||
Fri Sep 14 20:34:27 2001 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gconvert.c (g_filename_from_uri): Replace `is contains'
|
||||
by `contains' in two error messages. (#60395)
|
||||
|
||||
2001-09-10 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.h glib/giochannel.c: Added a length argument
|
||||
|
@ -1,3 +1,9 @@
|
||||
|
||||
Fri Sep 14 20:34:27 2001 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gconvert.c (g_filename_from_uri): Replace `is contains'
|
||||
by `contains' in two error messages. (#60395)
|
||||
|
||||
2001-09-10 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.h glib/giochannel.c: Added a length argument
|
||||
|
@ -1,3 +1,9 @@
|
||||
|
||||
Fri Sep 14 20:34:27 2001 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gconvert.c (g_filename_from_uri): Replace `is contains'
|
||||
by `contains' in two error messages. (#60395)
|
||||
|
||||
2001-09-10 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.h glib/giochannel.c: Added a length argument
|
||||
|
@ -1,3 +1,9 @@
|
||||
|
||||
Fri Sep 14 20:34:27 2001 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gconvert.c (g_filename_from_uri): Replace `is contains'
|
||||
by `contains' in two error messages. (#60395)
|
||||
|
||||
2001-09-10 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.h glib/giochannel.c: Added a length argument
|
||||
|
@ -1235,7 +1235,7 @@ g_filename_from_uri (const char *uri,
|
||||
if (unescaped_hostname == NULL)
|
||||
{
|
||||
g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_INVALID_URI,
|
||||
_("The hostname of the URI `%s' is contains invalidly escaped characters"),
|
||||
_("The hostname of the URI `%s' contains invalidly escaped characters"),
|
||||
uri);
|
||||
return NULL;
|
||||
}
|
||||
@ -1251,7 +1251,7 @@ g_filename_from_uri (const char *uri,
|
||||
if (filename == NULL)
|
||||
{
|
||||
g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_INVALID_URI,
|
||||
_("The URI `%s' is contains invalidly escaped characters"),
|
||||
_("The URI `%s' contains invalidly escaped characters"),
|
||||
uri);
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user