+2001-03-17 Ulrich Drepper <drepper@redhat.com>
+
+ * inet/Makefile (tests): Remove left-over comment.
+
+ * posix/unistd.h: Change type of second parameter back to size_t
+ as per upcoming XPG6.
+ * sysdeps/unix/sysv/aix/gethostname.c: Change type of second
+ parameter back to size_t as per upcoming XPG6.
+ * sysdeps/unix/sysv/sysv4/gethostname.c: Likewise.
+ * sysdeps/unix/sysv/gethostname.c: Likewise.
+ * sysdeps/mach/hurd/gethostname.c: Likewise.
+ * sysdeps/generic/gethostname.c: Likewise.
+
2001-03-16 Ulrich Drepper <drepper@redhat.com>
* sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
-# Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc.
+# Copyright (C) 1991-1999, 2000, 2001 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
in6_addr getnameinfo if_index
tests := htontest test_ifindex tst-ntoa tst-ether_aton tst-network \
- tst-gethnm # tst-ipnode
+ tst-gethnm
include ../Rules
/* Put the name of the current host in no more than LEN bytes of NAME.
The result is null-terminated if LEN is large enough for the full
name and the terminator. */
-extern int gethostname (char *__name, socklen_t __len) __THROW;
+extern int gethostname (char *__name, size_t __len) __THROW;
/* Set the name of the current host to NAME, which is LEN bytes long.
This call is restricted to the super-user. */
-/* Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991,1995,1996,1997,2000,2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
int
__gethostname (name, len)
char *name;
- socklen_t len;
+ size_t len;
{
__set_errno (ENOSYS);
return -1;
-/* Copyright (C) 1991-1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991-1997, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
int
__gethostname (name, len)
char *name;
- socklen_t len;
+ size_t len;
{
/* The host name is just the contents of the file /etc/hostname. */
ssize_t n = _hurd_get_host_config ("/etc/hostname", name, len);
-/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
int
__gethostname (name, len)
char *name;
- socklen_t len;
+ size_t len;
{
return gethostname (name, len);
}
-/* Copyright (C) 1992, 1995, 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1995, 1997, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
int
__gethostname (name, len)
char *name;
- socklen_t len;
+ size_t len;
{
struct utsname buf;
size_t node_len;
-/* Copyright (C) 1994, 1995, 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1994, 1995, 1997, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Brendan Kehoe (brendan@zen.org).
int
__gethostname (name, namelen)
char *name;
- socklen_t namelen;
+ size_t namelen;
{
return __sysinfo (SI_HOSTNAME, name, namelen);
}