X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fxgethostname.c;h=b4c8dcc7328055a40735c4d6d9c79b6829e61d8e;hb=fa662f811f9a6dda54f64639b107b1637c3ba2e5;hp=87e0ad9260cc2b9beceea4ea55d88b85d3884708;hpb=a62be9f4039b4499cfbb76e394cad2259d03fa84;p=gnulib.git diff --git a/lib/xgethostname.c b/lib/xgethostname.c index 87e0ad926..b4c8dcc73 100644 --- a/lib/xgethostname.c +++ b/lib/xgethostname.c @@ -1,7 +1,7 @@ /* xgethostname.c -- return current hostname with unlimited length - Copyright (C) 1992, 1996, 2000, 2001, 2003, 2004 Free Software - Foundation, Inc. + Copyright (C) 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006 Free + Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,25 +15,19 @@ 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 */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include /* Specification. */ #include "xgethostname.h" #include #include +#include -#if HAVE_UNISTD_H -# include -#endif - -#include "error.h" #include "xalloc.h" #ifndef ENAMETOOLONG @@ -70,7 +64,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);