X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgethostname.c;h=f05ed85d535166cc67a7d1ff8e14204fc69646b4;hb=1c01f30b6b6a4b087e613f7122095058bfa36c54;hp=2622c8ebfd2e5872508e8c005dbb7dfcb9e1e205;hpb=d349992d82f97d614404565ff66e3f8a47b4a568;p=gnulib.git diff --git a/lib/gethostname.c b/lib/gethostname.c index 2622c8ebf..f05ed85d5 100644 --- a/lib/gethostname.c +++ b/lib/gethostname.c @@ -1,5 +1,5 @@ /* gethostname emulation for SysV and POSIX.1. - Copyright (C) 1992, 2000 Free Software Foundation, Inc. + Copyright (C) 1992, 2003 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 @@ -13,7 +13,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. */ /* David MacKenzie */ @@ -29,10 +29,10 @@ Null terminate it if the name is shorter than LEN. Return 0 if ok, -1 if error. */ +#include + int -gethostname (name, len) - char *name; - int len; +gethostname (char *name, size_t len) { #ifdef HAVE_UNAME struct utsname uts;