aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sysklogd/syslogd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 3b511490f..8b59962be 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -574,10 +574,9 @@ int syslogd_main(int argc, char **argv)
574 *p++ = '\0'; 574 *p++ = '\0';
575 port = xatou16(p); 575 port = xatou16(p);
576 } 576 }
577 remoteAddr.sin_family = AF_INET;
578 /* FIXME: looks ip4-specific. need to do better */ 577 /* FIXME: looks ip4-specific. need to do better */
579 remoteAddr.sin_addr = *(struct in_addr *) *(xgethostbyname(opt_R)->h_addr_list); 578 bb_lookup_host(&remoteAddr, opt_R);
580 remoteAddr.sin_port = htons(port); 579 remoteAddr.sin_port = bb_lookup_port(port, "udp", port);
581 } 580 }
582 //if (option_mask32 & OPT_locallog) // -L 581 //if (option_mask32 & OPT_locallog) // -L
583#endif 582#endif