diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-24 10:25:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-24 10:25:31 +0000 |
commit | 4d42000c41c216157909df3cd33bd6d1387b22ed (patch) | |
tree | 09a89a5c67616887c1a1b9b2672c64a17b6389e4 /sysdeps/mach | |
parent | a853022cc32c8286018294e08cd4990ffcaf1d2b (diff) | |
download | glibc-4d42000c41c216157909df3cd33bd6d1387b22ed.tar.gz glibc-4d42000c41c216157909df3cd33bd6d1387b22ed.tar.xz glibc-4d42000c41c216157909df3cd33bd6d1387b22ed.zip |
Update.
1998-03-22 NIIBE Yutaka <gniibe@mri.co.jp> * inet/netinet/in.h (IN6_IS_ADDR_UNSPECIFIED, IN6_IS_ADDR_LOOPBACK): Fix paren. 1998-03-24 Ulrich Drepper <drepper@cygnus.com> * sysdeps/mach/hurd/setsockopt.c (setsockopt): Make OPTVAL parameter const. Reported by UCHIYAMA Yasushi <uch@nop.or.jp>.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/setsockopt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/setsockopt.c b/sysdeps/mach/hurd/setsockopt.c index f148390f6a..955aa743e1 100644 --- a/sysdeps/mach/hurd/setsockopt.c +++ b/sysdeps/mach/hurd/setsockopt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1994, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1994, 1997, 1998 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 @@ -31,7 +31,7 @@ setsockopt (fd, level, optname, optval, optlen) int fd; int level; int optname; - void *optval; + const void *optval; size_t optlen; { error_t err = HURD_DPORT_USE (fd, __socket_setopt (port, |