Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2006-03-30 01:45:17 +0400
committerJeff Johnston <jjohnstn@redhat.com>2006-03-30 01:45:17 +0400
commit9e443adbaf40e9b0f5dd7593c5021605f0f129a7 (patch)
tree9d8676ac7a26f8f82573e3294f8c2c9b46289448 /newlib/libc/sys/linux/net
parente47e7d6b02cfeabad4fe9a88b41b5edde6bc111b (diff)
2006-03-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/net/name6.c: Fix struct references.
Diffstat (limited to 'newlib/libc/sys/linux/net')
-rw-r--r--newlib/libc/sys/linux/net/name6.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/sys/linux/net/name6.c b/newlib/libc/sys/linux/net/name6.c
index 80037e8f9..f220e213c 100644
--- a/newlib/libc/sys/linux/net/name6.c
+++ b/newlib/libc/sys/linux/net/name6.c
@@ -1499,16 +1499,16 @@ _dns_ghbyname(void *rval, void *cb_data, va_list ap)
#ifdef INET6
switch (af) {
case AF_UNSPEC:
- &rtl4->rtl_entry = NULL; rtl4.rtl_type = T_A;
- &rtl6->rtl_entry = &rtl4; rtl6.rtl_type = T_AAAA;
+ rtl4.rtl_entry = NULL; rtl4.rtl_type = T_A;
+ rtl6.rtl_entry = &rtl4; rtl6.rtl_type = T_AAAA;
rtl = &rtl6;
break;
case AF_INET6:
- &rtl6->rtl_entry = NULL; rtl6.rtl_type = T_AAAA;
+ rtl6.rtl_entry = NULL; rtl6.rtl_type = T_AAAA;
rtl = &rtl6;
break;
case AF_INET:
- &rtl4->rtl_entry = NULL; rtl4.rtl_type = T_A;
+ rtl4.rtl_entry = NULL; rtl4.rtl_type = T_A;
rtl = &rtl4;
break;
}