- Fixed bug #28523 (Typo in ext/sockets/sockets.c)

This commit is contained in:
Derick Rethans 2004-05-26 06:53:04 +00:00
parent c50a4252cd
commit 17df3ec21b

View File

@ -322,7 +322,7 @@ static char *php_strerror(int error TSRMLS_DC)
buf = hstrerror(error);
#else
{
spprintf(&(SOCKETS_G(strerror_buf), "Host lookup error %d", error);
spprintf(&(SOCKETS_G(strerror_buf)), "Host lookup error %d", error);
buf = SOCKETS_G(strerror_buf);
}
#endif