diff options
author | Tor Lillqvist <tml@novell.com> | 2005-08-10 21:13:29 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-08-10 21:13:29 +0000 |
commit | 535939a144550ce5c50c06960b31c6f8a82dbeb2 (patch) | |
tree | 2d7f1164d452ff0be1005dc5e0056fed1e3cf6af | |
parent | 29e635059f606d9e6f607b2eefb17ffe3d7a12fc (diff) |
Use "localhost" as fallback for g_get_host_name(), not "unknown".
2005-08-11 Tor Lillqvist <tml@novell.com>
* glib/gutils.c (g_get_any_init): Use "localhost" as fallback for
g_get_host_name(), not "unknown".
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-12 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | glib/gutils.c | 6 |
5 files changed, 23 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2005-08-11 Tor Lillqvist <tml@novell.com> + + * glib/gutils.c (g_get_any_init): Use "localhost" as fallback for + g_get_host_name(), not "unknown". + 2005-08-10 Stepan Kasal <kasal@ucw.cz> Fix typos: Invokation --> Invocation (in various places) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index cdc4900cd..d9c5fd497 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2005-08-11 Tor Lillqvist <tml@novell.com> + + * glib/gutils.c (g_get_any_init): Use "localhost" as fallback for + g_get_host_name(), not "unknown". + 2005-08-10 Stepan Kasal <kasal@ucw.cz> Fix typos: Invokation --> Invocation (in various places) diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index cdc4900cd..d9c5fd497 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +2005-08-11 Tor Lillqvist <tml@novell.com> + + * glib/gutils.c (g_get_any_init): Use "localhost" as fallback for + g_get_host_name(), not "unknown". + 2005-08-10 Stepan Kasal <kasal@ucw.cz> Fix typos: Invokation --> Invocation (in various places) diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index cdc4900cd..d9c5fd497 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2005-08-11 Tor Lillqvist <tml@novell.com> + + * glib/gutils.c (g_get_any_init): Use "localhost" as fallback for + g_get_host_name(), not "unknown". + 2005-08-10 Stepan Kasal <kasal@ucw.cz> Fix typos: Invokation --> Invocation (in various places) diff --git a/glib/gutils.c b/glib/gutils.c index 6001457c3..751240899 100644 --- a/glib/gutils.c +++ b/glib/gutils.c @@ -1657,7 +1657,7 @@ g_get_any_init (void) #ifndef G_OS_WIN32 if (gethostname (hostname, sizeof (hostname)) == -1) - g_host_name = g_strdup ("unknown"); + g_host_name = g_strdup ("localhost"); else g_host_name = g_strdup (hostname); #else @@ -1665,7 +1665,7 @@ g_get_any_init (void) DWORD size = sizeof (hostname); if (!GetComputerName (hostname, &size)) - g_host_name = g_strdup ("unknown"); + g_host_name = g_strdup ("localhost"); else g_host_name = g_strdup (hostname); } @@ -1795,7 +1795,7 @@ g_get_tmp_dir (void) * of the machine is changed while an application is running, the * return value from this function does not change. The returned * string is owned by GLib and should not be modified or freed. If no - * name can be determined, a default fixed string "unknown" is + * name can be determined, a default fixed string "localhost" is * returned. * * Returns: the host name of the machine. |