summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2003-06-12 12:35:19 +0000
committerAndrey Hristov <andrey@php.net>2003-06-12 12:35:19 +0000
commitb607030b13f2da0a9dca6957dd3c6cb296ee638a (patch)
treecdadde7407282806f038bfc7f1db88507468d4e8
parent03a135a1410ea3da4e2fad3f8e6f78ef67e3a9a3 (diff)
downloadphp-git-b607030b13f2da0a9dca6957dd3c6cb296ee638a.tar.gz
proto fixes
-rw-r--r--ext/crack/crack.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/crack/crack.c b/ext/crack/crack.c
index 0f3c45ef5f..191255dd4a 100644
--- a/ext/crack/crack.c
+++ b/ext/crack/crack.c
@@ -140,7 +140,7 @@ ZEND_MODULE_INFO_D(crack)
DISPLAY_INI_ENTRIES();
}
-/* {{{ proto string crack_opendict(string dictionary)
+/* {{{ proto resource crack_opendict(string dictionary)
Opens a new cracklib dictionary */
ZEND_FUNCTION(crack_opendict)
{
@@ -161,7 +161,7 @@ ZEND_FUNCTION(crack_opendict)
}
/* }}} */
-/* {{{ proto string crack_closedict([int link_identifier])
+/* {{{ proto bool crack_closedict([resource dictionary])
Closes an open cracklib dictionary */
ZEND_FUNCTION(crack_closedict)
{
@@ -194,7 +194,7 @@ ZEND_FUNCTION(crack_closedict)
}
/* }}} */
-/* {{{ proto string crack_check([int dictionary,] string password)
+/* {{{ proto bool crack_check([resource dictionary,] string password)
Performs an obscure check with the given password */
ZEND_FUNCTION(crack_check)
{