Use "localhost" as fallback for g_get_host_name(), not "unknown".
authorTor Lillqvist <tml@novell.com>
Wed, 10 Aug 2005 21:13:29 +0000 (21:13 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Wed, 10 Aug 2005 21:13:29 +0000 (21:13 +0000)
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".

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-8
glib/gutils.c

index cdc4900..d9c5fd4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
index cdc4900..d9c5fd4 100644 (file)
@@ -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)
index cdc4900..d9c5fd4 100644 (file)
@@ -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)
index cdc4900..d9c5fd4 100644 (file)
@@ -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)
index 6001457..7512408 100644 (file)
@@ -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.