summaryrefslogtreecommitdiff
path: root/ext/sockets/sockets.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2004-05-26 06:53:04 +0000
committerDerick Rethans <derick@php.net>2004-05-26 06:53:04 +0000
commit17df3ec21b22a5f4cf15c47ca55f87e492ae24ae (patch)
tree03ba3a17a2d825e3b07ceb1ebab0bac38f84953c /ext/sockets/sockets.c
parentc50a4252cd5eaef3066d8a46cf8ba9b8e58c2ba3 (diff)
downloadphp-git-17df3ec21b22a5f4cf15c47ca55f87e492ae24ae.tar.gz
- Fixed bug #28523 (Typo in ext/sockets/sockets.c)
Diffstat (limited to 'ext/sockets/sockets.c')
-rw-r--r--ext/sockets/sockets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sockets/sockets.c b/ext/sockets/sockets.c
index 04f1b36f16..4aeaeecf9d 100644
--- a/ext/sockets/sockets.c
+++ b/ext/sockets/sockets.c
@@ -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