From: Roland McGrath Date: Tue, 26 Oct 2004 18:11:31 +0000 (+0000) Subject: * sysdeps/gnu/netinet/udp.h (struct udphdr): Use u_int16_t X-Git-Tag: cvs/fedora-glibc-20041102T1153~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e65a6679f07124fc2ab8b00c68a8ea4d1c628fb5;p=platform%2Fupstream%2Fglibc.git * sysdeps/gnu/netinet/udp.h (struct udphdr): Use u_int16_t type instead of uint16_t. Formatting. --- diff --git a/ChangeLog b/ChangeLog index f17c818..67df0af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-10-26 Jakub Jelinek + + * sysdeps/gnu/netinet/udp.h (struct udphdr): Use u_int16_t + type instead of uint16_t. Formatting. + 2004-10-25 Roland McGrath * login/openpty.c (openpty): Add libutil_hidden_def. diff --git a/sysdeps/gnu/netinet/udp.h b/sysdeps/gnu/netinet/udp.h index 8977712..45b69f7 100644 --- a/sysdeps/gnu/netinet/udp.h +++ b/sysdeps/gnu/netinet/udp.h @@ -54,21 +54,23 @@ /* UDP header as specified by RFC 768, August 1980. */ #ifdef __FAVOR_BSD + struct udphdr { - uint16_t uh_sport; /* source port */ - uint16_t uh_dport; /* destination port */ - uint16_t uh_ulen; /* udp length */ - uint16_t uh_sum; /* udp checksum */ + u_int16_t uh_sport; /* source port */ + u_int16_t uh_dport; /* destination port */ + u_int16_t uh_ulen; /* udp length */ + u_int16_t uh_sum; /* udp checksum */ }; + #else struct udphdr { - uint16_t source; - uint16_t dest; - uint16_t len; - uint16_t check; + u_int16_t source; + u_int16_t dest; + u_int16_t len; + u_int16_t check; }; #endif