Commit 480a15dc authored by joerg@trift2's avatar joerg@trift2

Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.1-build

into  trift2.:/MySQL/M51/push-5.1
parents 9337cfbb c78d6169
...@@ -118,13 +118,21 @@ int main(int argc, char **argv) ...@@ -118,13 +118,21 @@ int main(int argc, char **argv)
while (argc--) while (argc--)
{ {
#ifndef WIN32
struct in_addr addr; struct in_addr addr;
#endif
ip = *argv++; ip = *argv++;
/* Not compatible with IPv6! Probably should use getnameinfo(). */ /* Not compatible with IPv6! Probably should use getnameinfo(). */
#ifdef WIN32
taddr = inet_addr(ip);
if(taddr != INADDR_NONE)
{
#else
if (inet_aton(ip, &addr) != 0) if (inet_aton(ip, &addr) != 0)
{ {
taddr= addr.s_addr; taddr= addr.s_addr;
#endif
if (taddr == htonl(INADDR_BROADCAST)) if (taddr == htonl(INADDR_BROADCAST))
{ {
puts("Broadcast"); puts("Broadcast");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment