COMP: Remove alignment warning

This commit is contained in:
Andy Cedilnik 2004-10-11 11:53:29 -04:00
parent 031e956adc
commit 37c5553818
1 changed files with 7 additions and 1 deletions

View File

@ -59,7 +59,13 @@ static const char *inet_ntop4 (const u_char *src, char *dst, size_t size)
#ifdef HAVE_INET_NTOA_R
return inet_ntoa_r(*(struct in_addr*)src, dst, size);
#else
const char *addr = inet_ntoa(*(struct in_addr*)src);
union {
const u_char* uch;
const struct in_addr* iad;
} srcaddr;
const char *addr;
srcaddr.uch = src;
addr = inet_ntoa(*srcaddr.iad);
if (strlen(addr) >= size)
{