From: Denis Vlasenko Date: Tue, 9 Jan 2007 23:43:28 +0000 (-0000) Subject: small size reduction by Bernhard Fischer X-Git-Tag: 1_4_0~61 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=59f2c34037cc1044d9966acdb86ebc11b42dbd86;p=oweals%2Fbusybox.git small size reduction by Bernhard Fischer --- 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) *p++ = '\0'; port = xatou16(p); } - remoteAddr.sin_family = AF_INET; /* FIXME: looks ip4-specific. need to do better */ - remoteAddr.sin_addr = *(struct in_addr *) *(xgethostbyname(opt_R)->h_addr_list); - remoteAddr.sin_port = htons(port); + bb_lookup_host(&remoteAddr, opt_R); + remoteAddr.sin_port = bb_lookup_port(port, "udp", port); } //if (option_mask32 & OPT_locallog) // -L #endif