mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
* include/ifaddrs.h: Get uint32_t definition.
* posix/tst-rfc3484.c: Update fake __check_pf implementation. * posix/tst-rfc3484-2.c: Likewise.
This commit is contained in:
parent
f9d07577ce
commit
86e0544901
@ -1,5 +1,9 @@
|
||||
2006-04-19 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* 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
|
||||
|
@ -1,6 +1,7 @@
|
||||
#ifndef _IFADDRS_H
|
||||
#include <inet/ifaddrs.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
libc_hidden_proto (getifaddrs)
|
||||
libc_hidden_proto (freeifaddrs)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user