diff options
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/syslogd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index de8aa04a8..f3ebf9392 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c | |||
@@ -525,7 +525,7 @@ static int try_to_resolve_remote(void) | |||
525 | if (!G.remoteAddr) | 525 | if (!G.remoteAddr) |
526 | return -1; | 526 | return -1; |
527 | } | 527 | } |
528 | return socket(G.remoteAddr->sa.sa_family, SOCK_DGRAM, 0); | 528 | return socket(G.remoteAddr->u.sa.sa_family, SOCK_DGRAM, 0); |
529 | } | 529 | } |
530 | #endif | 530 | #endif |
531 | 531 | ||
@@ -592,7 +592,7 @@ static void do_syslogd(void) | |||
592 | } | 592 | } |
593 | /* send message to remote logger, ignore possible error */ | 593 | /* send message to remote logger, ignore possible error */ |
594 | sendto(G.remoteFD, G.recvbuf, sz, MSG_DONTWAIT, | 594 | sendto(G.remoteFD, G.recvbuf, sz, MSG_DONTWAIT, |
595 | &G.remoteAddr->sa, G.remoteAddr->len); | 595 | &G.remoteAddr->u.sa, G.remoteAddr->len); |
596 | no_luck: ; | 596 | no_luck: ; |
597 | } | 597 | } |
598 | #endif | 598 | #endif |