From: Simon Josefsson Date: Wed, 16 Jan 2008 14:01:09 +0000 (+0100) Subject: Need string.h for strcpy in gethostname module. X-Git-Tag: v0.1~7826 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=e9ad8e6293db75ca77d4910ff97a0222da259c0a;p=gnulib.git Need string.h for strcpy in gethostname module. --- diff --git a/ChangeLog b/ChangeLog index 77b5eda30..3d6d2ce3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-01-16 Simon Josefsson + + * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy. + 2008-01-15 Paul Eggert Fix problem with getdate on mingw32 reported by Simon Josefsson diff --git a/lib/gethostname.c b/lib/gethostname.c index fec9fe3ed..de3d9a527 100644 --- a/lib/gethostname.c +++ b/lib/gethostname.c @@ -1,6 +1,6 @@ /* gethostname emulation for SysV and POSIX.1. - Copyright (C) 1992, 2003, 2006 Free Software Foundation, Inc. + Copyright (C) 1992, 2003, 2006, 2008 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 @@ -21,6 +21,8 @@ #ifdef HAVE_UNAME # include +#else +# include #endif /* Put up to LEN chars of the host name into NAME.