diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-09 23:43:28 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-09 23:43:28 +0000 |
commit | 59f2c34037cc1044d9966acdb86ebc11b42dbd86 (patch) | |
tree | 905b56a2662240c6ed9a70338effdb5670bc1b44 /sysklogd | |
parent | bae7948a5af99ed3340450c811a2615f253a7bdd (diff) |
small size reduction by Bernhard Fischer <rep.nop@aon.at>
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/syslogd.c | 5 |
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) *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 |