Skip to content

Commit

Permalink
* include/ifaddrs.h: Get uint32_t definition.
Browse files Browse the repository at this point in the history
	* posix/tst-rfc3484.c: Update fake __check_pf implementation.
	* posix/tst-rfc3484-2.c: Likewise.
  • Loading branch information
Ulrich Drepper committed Apr 20, 2006
1 parent f9d0757 commit 86e0544
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions include/ifaddrs.h
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 3 additions & 1 deletion posix/tst-rfc3484-2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 3 additions & 1 deletion posix/tst-rfc3484.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 86e0544

Please sign in to comment.