diff options
author | Peter Foley <pefoley2@pefoley.com> | 2016-03-30 09:15:55 -0400 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-03-30 16:51:40 +0200 |
commit | 31dfc51a361fb96ea2a20e657076f842cac8790d (patch) | |
tree | 5585f94d88900ea45386c0646090d8e1e1943b6f /winsup/cygwin/include/netinet/ip.h | |
parent | d6c651040def845321010a63f3962d63f0a0c01b (diff) | |
download | cygnal-31dfc51a361fb96ea2a20e657076f842cac8790d.tar.gz cygnal-31dfc51a361fb96ea2a20e657076f842cac8790d.tar.bz2 cygnal-31dfc51a361fb96ea2a20e657076f842cac8790d.zip |
fix typo in netinit/ip.h
The type for the ip_tos member was typoed, fix it.
winsup/cygwin/ChangeLog:
include/netinet/ip.h: fix type of ip_tos
Signed-off-by: Peter Foley <pefoley2@pefoley.com>
Diffstat (limited to 'winsup/cygwin/include/netinet/ip.h')
-rw-r--r-- | winsup/cygwin/include/netinet/ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/include/netinet/ip.h b/winsup/cygwin/include/netinet/ip.h index b952d5324..1f6ebbe4a 100644 --- a/winsup/cygwin/include/netinet/ip.h +++ b/winsup/cygwin/include/netinet/ip.h @@ -63,7 +63,7 @@ struct ip { ip_hl:4; /* header length */ #endif #endif /* not _IP_VHL */ - u_int_8 ip_tos; /* type of service */ + u_int8_t ip_tos; /* type of service */ u_int16_t ip_len; /* total length */ u_int16_t ip_id; /* identification */ u_int16_t ip_off; /* fragment offset field */ |