* include/cygwin/in6.h: Guard in_port_t typedef more restrictive to
avoid compiler warning.
This commit is contained in:
parent
724c4ed146
commit
020a7b4711
|
@ -1,3 +1,8 @@
|
||||||
|
2006-07-25 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* include/cygwin/in6.h: Guard in_port_t typedef more restrictive to
|
||||||
|
avoid compiler warning.
|
||||||
|
|
||||||
2006-07-25 Christopher Faylor <cgf@timesys.com>
|
2006-07-25 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* security.cc (get_logon_server): Remove nret and use dret for
|
* security.cc (get_logon_server): Remove nret and use dret for
|
||||||
|
|
|
@ -97,7 +97,7 @@ struct in6_pktinfo
|
||||||
unsigned int ipi6_ifindex;
|
unsigned int ipi6_ifindex;
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __INSIDE_CYGWIN__
|
#if defined (__INSIDE_CYGWIN__) && !defined (_CYGWIN_IN_H)
|
||||||
typedef uint16_t in_port_t;
|
typedef uint16_t in_port_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue