diff -urN net/common/current/ChangeLog net/common/current/ChangeLog.new --- net/common/current/ChangeLog +++ net/common/current/ChangeLog.new @@ -1,3 +1,8 @@ +2006-12-18 Sergei Gavrikov + + * tests/ga_server_test.c: Updated flags argument in call of + getnameinfo(). + 2006-05-25 Andrew Lunn * cdl/net.cdl: Fix calculation of TFTPD stack diff -urN net/common/current/tests/ga_server_test.c net/common/current/tests/ga_server_test.c.new --- net/common/current/tests/ga_server_test.c +++ net/common/current/tests/ga_server_test.c.new @@ -122,7 +122,7 @@ if (getnameinfo (&client_addr, client_len, host_addr_buf, sizeof(host_addr_buf), host_port_buf, sizeof(host_port_buf), - NI_NUMERIC) == EAI_NONE) { + NI_NUMERICHOST) == EAI_NONE) { diag_printf("connection from %s(%s)\n", host_addr_buf, host_port_buf); diag_sprintf(buf, "Hello %s(%s)\n", host_addr_buf, host_port_buf); } else {