X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fxgethostname.c;h=656ef410132f6b9b0ff897fcf349f1073e3fd806;hb=f0216ef8e9e0726edbb361c5d275380ca312870f;hp=7b29176f2097ff58c9a5348f9a74723f200858ac;hpb=25ef69613afa3d3e727203c74b7c011f87813663;p=gnulib.git diff --git a/lib/xgethostname.c b/lib/xgethostname.c index 7b29176f2..656ef4101 100644 --- a/lib/xgethostname.c +++ b/lib/xgethostname.c @@ -1,6 +1,6 @@ /* xgethostname.c -- return current hostname with unlimited length - Copyright (C) 1992, 1996, 2000, 2001, 2003, 2004 Free Software + Copyright (C) 1992, 1996, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* written by Jim Meyering */ @@ -28,10 +28,7 @@ #include #include - -#if HAVE_UNISTD_H -# include -#endif +#include #include "xalloc.h" @@ -69,7 +66,9 @@ xgethostname (void) if (! hostname[size_1 - 1]) break; } - else if (errno != 0 && errno != ENAMETOOLONG && errno != EINVAL) + else if (errno != 0 && errno != ENAMETOOLONG && errno != EINVAL + /* OSX/Darwin does this when the buffer is not large enough */ + && errno != ENOMEM) { int saved_errno = errno; free (hostname);