Compilation fix for AIX: fix the name of wxGetservBuf ctor.
The ctor was wrongly called so wxGetservBuf class couldn't be compiled, breaking compilation under AIX and any other systems with 4 argument getservbyname_r(). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69614 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -144,7 +144,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxUNIXaddress, wxSockAddress)
|
|||||||
#ifdef HAVE_FUNC_GETSERVBYNAME_R_4
|
#ifdef HAVE_FUNC_GETSERVBYNAME_R_4
|
||||||
struct wxGetservBuf : servent_data
|
struct wxGetservBuf : servent_data
|
||||||
{
|
{
|
||||||
wxGethostBuf()
|
wxGetservBuf()
|
||||||
{
|
{
|
||||||
memset(this, 0, sizeof(servent_data));
|
memset(this, 0, sizeof(servent_data));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user