Merge bk-internal.mysql.com:/home/bk/mysql-5.1-maint
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint
This commit is contained in:
commit
fdb423e8de
@ -837,6 +837,7 @@ AC_CHECK_FUNC(p2open, , AC_CHECK_LIB(gen, p2open))
|
|||||||
AC_CHECK_FUNC(bind, , AC_CHECK_LIB(bind, bind))
|
AC_CHECK_FUNC(bind, , AC_CHECK_LIB(bind, bind))
|
||||||
# Check if crypt() exists in libc or libcrypt, sets LIBS if needed
|
# Check if crypt() exists in libc or libcrypt, sets LIBS if needed
|
||||||
AC_SEARCH_LIBS(crypt, crypt, AC_DEFINE(HAVE_CRYPT, 1, [crypt]))
|
AC_SEARCH_LIBS(crypt, crypt, AC_DEFINE(HAVE_CRYPT, 1, [crypt]))
|
||||||
|
# See if we need a library for address lookup.
|
||||||
AC_SEARCH_LIBS(inet_aton, [socket nsl resolv])
|
AC_SEARCH_LIBS(inet_aton, [socket nsl resolv])
|
||||||
|
|
||||||
# For the sched_yield() function on Solaris
|
# For the sched_yield() function on Solaris
|
||||||
|
@ -116,11 +116,13 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
while (argc--)
|
while (argc--)
|
||||||
{
|
{
|
||||||
|
struct in_addr addr;
|
||||||
ip = *argv++;
|
ip = *argv++;
|
||||||
|
|
||||||
if (my_isdigit(&my_charset_latin1,ip[0]))
|
/* Not compatible with IPv6! Probably should use getnameinfo(). */
|
||||||
|
if (inet_aton(ip, &addr) != 0)
|
||||||
{
|
{
|
||||||
taddr = inet_addr(ip);
|
taddr= addr.s_addr;
|
||||||
if (taddr == htonl(INADDR_BROADCAST))
|
if (taddr == htonl(INADDR_BROADCAST))
|
||||||
{
|
{
|
||||||
puts("Broadcast");
|
puts("Broadcast");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user