This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Minor typo in /usr/i686-pc-cygwin/include/cygwin/in.h


Aaarrrrggghhhh. Check the archives before posting. This has been
reported about 139 times already. The fix will be in the next release.

--Chuck

Stefan Ondrejicka wrote:
> 
> Hello,
> 
> I have just downloaded and installed latest netinstall version of cygwin.
> I tryied to compile my program which is using sockets for network
> communication. It refuzes to compile because of one typo in header file
> mentioned in subject.
> 
> The typo is in declaration of structure for IPv6 socket address.
> 
> currently it is
> 
> struct sockaddr_in6
> {
>         unsigned short sin6_family;
>         unsigned short sin6_port;
>         unsigned long sin6_flowinfo;
>         struct in_addr6 sin6_addr;
> };
> 
> and should be
> 
> struct sockaddr_in6
> {
>         unsigned short sin6_family;
>         unsigned short sin6_port;
>         unsigned long sin6_flowinfo;
>         struct in6_addr sin6_addr;
> };
> 
> The typo is in last field of structure :-)
> 
> I was sending this message originaly to cygwin-developers list, but I am
> not subscribed to that list, so my message was rejected. I hope someone
> authorized will read this email at least this way.
> 
> With best regards,
> Stevo.
> 
> P.S. Thanks for such great environment for easy porting of unix programs
>      to win32.
> 
> --
> Stefan Ondrejicka <ondrej@idata.sk>
> Beethovenova 11, 917 08 Trnava, Slovakia
> http://www.idata.sk/~ondrej/
> 
> --
> Want to unsubscribe from this list?
> Send a message to cygwin-unsubscribe@sourceware.cygnus.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]