merge with 1.10 + local build mods
authorJim Meyering <jim@meyering.net>
Fri, 20 May 1994 13:50:55 +0000 (13:50 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 20 May 1994 13:50:55 +0000 (13:50 +0000)
lib/xgethostname.c

index 86408e7..9973b45 100644 (file)
@@ -46,12 +46,12 @@ xgethostname ()
   int err;
 
   size = INITIAL_HOSTNAME_LENGTH;
+  hostname = xmalloc (size);
   while (1)
     {
-      hostname = xmalloc (size);
       hostname[size - 1] = '\0';
       err = gethostname (hostname, size);
-      if (err || hostname[size - 1] == '\0')
+      if (err == 0 && hostname[size - 1] == '\0')
        break;
       size *= 2;
       hostname = xrealloc (hostname, size);