]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 17 Mar 2001 08:29:27 +0000 (08:29 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 17 Mar 2001 08:29:27 +0000 (08:29 +0000)
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.

ChangeLog
inet/Makefile
posix/unistd.h
sysdeps/generic/gethostname.c
sysdeps/mach/hurd/gethostname.c
sysdeps/unix/sysv/aix/gethostname.c
sysdeps/unix/sysv/gethostname.c
sysdeps/unix/sysv/sysv4/gethostname.c

index c1d9c3ee87d46cf0b4fa521fb8ee11b14ed1901f..04b9340950b922641b7147b750c29ba521f77b55 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+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):
index 19009efc20f4ecf30308e2424b31d4ab2a111642..240004ac83948fb2e9c2f2bb6ae156e11309b77c 100644 (file)
@@ -1,4 +1,4 @@
-# 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
@@ -48,7 +48,7 @@ routines := htonl htons               \
            in6_addr getnameinfo if_index
 
 tests := htontest test_ifindex tst-ntoa tst-ether_aton tst-network \
-        tst-gethnm # tst-ipnode
+        tst-gethnm
 
 include ../Rules
 
index 809e87a540334eddffc7ce5eac3a145fd2af61f6..1148cb74fcd7797bfcc4860917eac2a94cd1d108 100644 (file)
@@ -732,7 +732,7 @@ extern int setlogin (__const char *__name) __THROW;
 /* 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.  */
index 6c3e1167ab329a70a2381beeaceb5d2553a3c4aa..7004673fe20ddec3e81d7b8bde02764d32ce1f6e 100644 (file)
@@ -1,4 +1,4 @@
-/* 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
@@ -25,7 +25,7 @@
 int
 __gethostname (name, len)
      char *name;
-     socklen_t len;
+     size_t len;
 {
   __set_errno (ENOSYS);
   return -1;
index b74945ba792cb4bf179bae9415f96d02fc1eed23..4b7a61c95fe594d2804e85f5e1018f27fd56793a 100644 (file)
@@ -1,4 +1,4 @@
-/* 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
@@ -25,7 +25,7 @@
 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);
index 76c8c72d872bd12fd9a34f24f0ec2445940fbbc9..94820588540a893e6e91ce549aaedafa4fea8e49 100644 (file)
@@ -1,4 +1,4 @@
-/* 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
@@ -21,7 +21,7 @@
 int
 __gethostname (name, len)
      char *name;
-     socklen_t len;
+     size_t len;
 {
   return gethostname (name, len);
 }
index 706564957d476ab83cf29a6e945323d0664fbf4a..2eb8dcfe9cb003366579cc34b3597cb5a1d62710 100644 (file)
@@ -1,4 +1,4 @@
-/* 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
@@ -27,7 +27,7 @@
 int
 __gethostname (name, len)
      char *name;
-     socklen_t len;
+     size_t len;
 {
   struct utsname buf;
   size_t node_len;
index 3f967e15d43c9e038599ddfe4b917f04714bbf61..1a1440f0799c1aa7e71669572138bab83ba2cd4b 100644 (file)
@@ -1,4 +1,4 @@
-/* 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).
 
@@ -27,7 +27,7 @@ extern int __sysinfo (int command, char *buf, long int count);
 int
 __gethostname (name, namelen)
      char *name;
-     socklen_t namelen;
+     size_t namelen;
 {
   return __sysinfo (SI_HOSTNAME, name, namelen);
 }
This page took 0.105259 seconds and 5 git commands to generate.