K 10
svn:author
V 6
iulius
K 8
svn:date
V 27
2015-05-14T13:39:24.956411Z
K 7
svn:log
V 346
innfeed/connection.c:  avoid violating C aliasing rules

The object was written as a 'struct sockaddr' but then read as a
'struct sockaddr_storage', which violates C99 s6.5#7.  The fix
is to always access it as a 'struct sockaddr' and use a union to
ensure enough space for any possible address type.

Thanks to Richard Kettlewell for the patch.

END
