mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
Ugh, fix braino.
This commit is contained in:
parent
d5a989875b
commit
7aa2e37f5e
@ -5,7 +5,10 @@
|
||||
return "localhost" hostnames.
|
||||
(safe_strcmp_filename): New function that considers slash and
|
||||
backslash equal on Win32.
|
||||
(run_roundtrip_tests): Use safe_strcmp_filename().
|
||||
(safe_strcmp_hostname): New function that considers "localhost"
|
||||
equal NULL on Win32.
|
||||
(run_roundtrip_tests): Use safe_strcmp_filename() and
|
||||
safe_strcmp_hostname().
|
||||
|
||||
Sun Jul 31 01:50:20 2005 Tim Janik <timj@gtk.org>
|
||||
|
||||
|
@ -5,7 +5,10 @@
|
||||
return "localhost" hostnames.
|
||||
(safe_strcmp_filename): New function that considers slash and
|
||||
backslash equal on Win32.
|
||||
(run_roundtrip_tests): Use safe_strcmp_filename().
|
||||
(safe_strcmp_hostname): New function that considers "localhost"
|
||||
equal NULL on Win32.
|
||||
(run_roundtrip_tests): Use safe_strcmp_filename() and
|
||||
safe_strcmp_hostname().
|
||||
|
||||
Sun Jul 31 01:50:20 2005 Tim Janik <timj@gtk.org>
|
||||
|
||||
|
@ -5,7 +5,10 @@
|
||||
return "localhost" hostnames.
|
||||
(safe_strcmp_filename): New function that considers slash and
|
||||
backslash equal on Win32.
|
||||
(run_roundtrip_tests): Use safe_strcmp_filename().
|
||||
(safe_strcmp_hostname): New function that considers "localhost"
|
||||
equal NULL on Win32.
|
||||
(run_roundtrip_tests): Use safe_strcmp_filename() and
|
||||
safe_strcmp_hostname().
|
||||
|
||||
Sun Jul 31 01:50:20 2005 Tim Janik <timj@gtk.org>
|
||||
|
||||
|
@ -5,7 +5,10 @@
|
||||
return "localhost" hostnames.
|
||||
(safe_strcmp_filename): New function that considers slash and
|
||||
backslash equal on Win32.
|
||||
(run_roundtrip_tests): Use safe_strcmp_filename().
|
||||
(safe_strcmp_hostname): New function that considers "localhost"
|
||||
equal NULL on Win32.
|
||||
(run_roundtrip_tests): Use safe_strcmp_filename() and
|
||||
safe_strcmp_hostname().
|
||||
|
||||
Sun Jul 31 01:50:20 2005 Tim Janik <timj@gtk.org>
|
||||
|
||||
|
@ -314,7 +314,7 @@ safe_strcmp (const gchar *a, const gchar *b)
|
||||
static gint
|
||||
safe_strcmp_filename (const gchar *a, const gchar *b)
|
||||
{
|
||||
#ifdef G_OS_WIN32
|
||||
#ifndef G_OS_WIN32
|
||||
return safe_strcmp (a, b);
|
||||
#else
|
||||
if (!a)
|
||||
@ -331,10 +331,24 @@ safe_strcmp_filename (const gchar *a, const gchar *b)
|
||||
else
|
||||
return (*a - *b);
|
||||
}
|
||||
return (*a - *b);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static gint
|
||||
safe_strcmp_hostname (const gchar *a, const gchar *b)
|
||||
{
|
||||
#ifndef G_OS_WIN32
|
||||
return safe_strcmp (a, b);
|
||||
#else
|
||||
if (safe_strcmp (a, "localhost") == 0 && b == NULL)
|
||||
return 0;
|
||||
else
|
||||
return safe_strcmp (a, b);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
run_roundtrip_tests (void)
|
||||
{
|
||||
@ -378,7 +392,7 @@ run_roundtrip_tests (void)
|
||||
any_failed = TRUE;
|
||||
}
|
||||
|
||||
if (safe_strcmp (to_uri_tests[i].hostname, hostname))
|
||||
if (safe_strcmp_hostname (to_uri_tests[i].hostname, hostname))
|
||||
{
|
||||
g_print ("roundtrip test %d failed, hostname modified: "
|
||||
" expected \"%s\", but got \"%s\"\n",
|
||||
|
Loading…
Reference in New Issue
Block a user