From: Ulrich Drepper Date: Thu, 20 Apr 2006 06:27:35 +0000 (+0000) Subject: * include/ifaddrs.h: Get uint32_t definition. X-Git-Tag: cvs/fedora-glibc-20060424T0820~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86e054490143ce2d4695cc3456190a2e57792808;p=thirdparty%2Fglibc.git * include/ifaddrs.h: Get uint32_t definition. * posix/tst-rfc3484.c: Update fake __check_pf implementation. * posix/tst-rfc3484-2.c: Likewise. --- diff --git a/ChangeLog b/ChangeLog index 0df97fdc36a..6927f6f7c93 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2006-04-19 Ulrich Drepper + * include/ifaddrs.h: Get uint32_t definition. + * posix/tst-rfc3484.c: Update fake __check_pf implementation. + * posix/tst-rfc3484-2.c: Likewise. + * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PROC_SELF_FD_SYMLINK. * sysdeps/unix/sysv/linux/ttyname.c: Cleanups. Avoid compatibility diff --git a/include/ifaddrs.h b/include/ifaddrs.h index d41547a7439..d790fcbe870 100644 --- a/include/ifaddrs.h +++ b/include/ifaddrs.h @@ -1,6 +1,7 @@ #ifndef _IFADDRS_H #include #include +#include libc_hidden_proto (getifaddrs) libc_hidden_proto (freeifaddrs) diff --git a/posix/tst-rfc3484-2.c b/posix/tst-rfc3484-2.c index e2800b48c61..b3987c8cd59 100644 --- a/posix/tst-rfc3484-2.c +++ b/posix/tst-rfc3484-2.c @@ -11,9 +11,11 @@ void attribute_hidden -__check_pf (bool *p1, bool *p2) +__check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen) { *p1 = *p2 = true; + *in6ai = NULL; + *in6ailen = 0; } int __idna_to_ascii_lz (const char *input, char **output, int flags) diff --git a/posix/tst-rfc3484.c b/posix/tst-rfc3484.c index 378e43a0119..abfb76d543b 100644 --- a/posix/tst-rfc3484.c +++ b/posix/tst-rfc3484.c @@ -11,9 +11,11 @@ void attribute_hidden -__check_pf (bool *p1, bool *p2) +__check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen) { *p1 = *p2 = true; + *in6ai = NULL; + *in6ailen = 0; } int __idna_to_ascii_lz (const char *input, char **output, int flags)