Re: Typo in socket.h

2006-01-19 Thread Corinna Vinschen
On Jan 19 17:27, [EMAIL PROTECTED] wrote: > Hi, > > I have found a bug in /usr/include/cygwin/socket.h: > > struct sockaddr_storage { > sa_family_t ss_familiy; > ... > > should be > > struct sockaddr_storage { > sa_family_t ss_family; > ... > > Some programs won't compi

Typo in socket.h

2006-01-19 Thread jan . safranek
Hi, I have found a bug in /usr/include/cygwin/socket.h: struct sockaddr_storage { sa_family_t ss_familiy; ... should be struct sockaddr_storage { sa_family_t ss_family; ... Some programs won't compile without the change. I believe it's just a simple typo and not an