]> granicus.if.org Git - php/commitdiff
proto fix
authorAndrey Hristov <andrey@php.net>
Wed, 31 Dec 2003 10:56:32 +0000 (10:56 +0000)
committerAndrey Hristov <andrey@php.net>
Wed, 31 Dec 2003 10:56:32 +0000 (10:56 +0000)
ext/standard/fsock.c

index 949507954ef44881a3d8f66f3aa7a9d0d45d2de5..31e27a77649a739970b8dcf6ca7e3abeaba594c3 100644 (file)
@@ -116,14 +116,14 @@ static void php_fsockopen_stream(INTERNAL_FUNCTION_PARAMETERS, int persistent)
 
 /* }}} */
 
-/* {{{ proto int fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])
+/* {{{ proto resource fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])
    Open Internet or Unix domain socket connection */
 PHP_FUNCTION(fsockopen)
 {
        php_fsockopen_stream(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
 }
 /* }}} */
-/* {{{ proto int pfsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])
+/* {{{ proto resource pfsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])
    Open persistent Internet or Unix domain socket connection */
 PHP_FUNCTION(pfsockopen)
 {