andrey          Thu Jun 12 08:37:03 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4/ext/crack     crack.c 
  Log:
  proto fixes
  
Index: php4/ext/crack/crack.c
diff -u php4/ext/crack/crack.c:1.18.8.1 php4/ext/crack/crack.c:1.18.8.2
--- php4/ext/crack/crack.c:1.18.8.1     Tue Dec 31 11:34:14 2002
+++ php4/ext/crack/crack.c      Thu Jun 12 08:37:03 2003
@@ -15,7 +15,7 @@
    | Authors: Alexander Feldman                                           |
    +----------------------------------------------------------------------+
  */
-/* $Id: crack.c,v 1.18.8.1 2002/12/31 16:34:14 sebastian Exp $ */
+/* $Id: crack.c,v 1.18.8.2 2003/06/12 12:37:03 andrey Exp $ */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
@@ -140,7 +140,7 @@
        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 @@
 }
 /* }}} */
 
-/* {{{ 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 @@
 }
 /* }}} */
 
-/* {{{ 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)
 {



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to