changeset 9627:5d966818e300

Need string.h for strcpy in gethostname module.
author Simon Josefsson <simon@josefsson.org>
date Wed, 16 Jan 2008 15:01:09 +0100
parents def4f669ceac
children 8b78449a7146
files ChangeLog lib/gethostname.c
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-16  Simon Josefsson  <simon@josefsson.org>
+
+	* lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
+
 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
 
 	Fix problem with getdate on mingw32 reported by Simon Josefsson
--- 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 <sys/utsname.h>
+#else
+# include <string.h>
 #endif
 
 /* Put up to LEN chars of the host name into NAME.