]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Tue, 7 Mar 2000 14:31:30 +0000 (14:31 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 7 Mar 2000 14:31:30 +0000 (14:31 +0000)
2000-03-07  Andreas Jaeger  <aj@suse.de>

* resolv/netdb.h: The descriptions of rresvport and rresvport_af
were swapped.
Patch by YOSHIFUJI Hideaki <yoshfuji@ecei.tohoku.ac.jp>, closes PR
libc/1636.

ChangeLog
resolv/netdb.h
sysdeps/i386/fpu/bits/mathinline.h

index 1f31b87ee28b09deabc88d0e8e8a5fb45ac2b7b1..95b1c8711c7e86b3366952548988fc51f619cc08 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-03-07  Andreas Jaeger  <aj@suse.de>
+
+       * resolv/netdb.h: The descriptions of rresvport and rresvport_af
+       were swapped.
+       Patch by YOSHIFUJI Hideaki <yoshfuji@ecei.tohoku.ac.jp>, closes PR
+       libc/1636.
+
 2000-03-06  Andreas Jaeger  <aj@suse.de>
 
        * sysdeps/i386/fpu/bits/mathinline.h: Fix union definition error
index 716753c3cd1a6103c5b232035a990265e5e3a04a..354d9ddfdb0f038d419eb34a25f3efc5ef186473 100644 (file)
@@ -410,11 +410,11 @@ extern int ruserok_af (__const char *__rhost, int __suser,
 /* Try to allocate reserved port, returning a descriptor for a socket opened
    at this port or -1 if unsuccessful.  The search for an available port
    will start at ALPORT and continues with lower numbers.  */
-extern int rresvport_af (int *__alport, sa_family_t __af) __THROW;
+extern int rresvport (int *__alport) __THROW;
 
 /* This is the equivalent function where the protocol can be selected
    and which therefore can be used for IPv6.  */
-extern int rresvport (int *__alport) __THROW;
+extern int rresvport_af (int *__alport, sa_family_t __af) __THROW;
 #endif
 
 
index 7724443414edfeaef0880922cd560348e0404432..10a617ad77497502de1cc3ac2acab62a47327249 100644 (file)
@@ -455,7 +455,7 @@ __inline_mathcode (asin, __x, return __atan2l (__x, __sqrtl (1.0 - __x * __x)))
 __inline_mathcode (acos, __x, return __atan2l (__sqrtl (1.0 - __x * __x), __x))
 
 __inline_mathcode_ (long double, __sgn1l, __x, \
-  union { long double __xld; unsigned int __xi[3]; } __n = { __xld: __x };  \
+  union { long double __xld; unsigned int __xi[3]; } __n = { __xld: __x };  \
   __n.__xi[2] = (__n.__xi[2] & 0x8000) | 0x3fff;                             \
   __n.__xi[1] = 0x80000000;                                                  \
   __n.__xi[0] = 0;                                                           \