From b60f6774dc4edd725b3eefe31b0c06f83f815f4b Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Tue, 24 May 2011 00:10:00 +0000 Subject: [PATCH] - Fix the fix # Arghh, copy and paste error :( --- ext/sockets/sockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/sockets/sockets.c b/ext/sockets/sockets.c index 1651ca9db4..2af92005b8 100644 --- a/ext/sockets/sockets.c +++ b/ext/sockets/sockets.c @@ -1541,7 +1541,7 @@ PHP_FUNCTION(socket_connect) case AF_UNIX: if (addr_len >= sizeof(s_un.sun_path)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Path too long", php_sock->type); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Path too long"); RETURN_FALSE; } -- 2.40.0