- be C99 friendly. Anonymous unions are a GNU extension. This change is

size-neutral WRT -std=gnu99 and fixes several compilation errors for strict
  C99 mode.
This commit is contained in:
Bernhard Reutner-Fischer
2008-01-29 10:33:34 +00:00
parent c882f341ce
commit 8c69afd992
18 changed files with 98 additions and 99 deletions

View File

@ -525,7 +525,7 @@ static int try_to_resolve_remote(void)
if (!G.remoteAddr)
return -1;
}
return socket(G.remoteAddr->sa.sa_family, SOCK_DGRAM, 0);
return socket(G.remoteAddr->u.sa.sa_family, SOCK_DGRAM, 0);
}
#endif
@ -592,7 +592,7 @@ static void do_syslogd(void)
}
/* send message to remote logger, ignore possible error */
sendto(G.remoteFD, G.recvbuf, sz, MSG_DONTWAIT,
&G.remoteAddr->sa, G.remoteAddr->len);
&G.remoteAddr->u.sa, G.remoteAddr->len);
no_luck: ;
}
#endif