diff options
Diffstat (limited to 'ext/standard/php_crypt.h')
-rw-r--r-- | ext/standard/php_crypt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/php_crypt.h b/ext/standard/php_crypt.h index 6025685539..c861187649 100644 --- a/ext/standard/php_crypt.h +++ b/ext/standard/php_crypt.h @@ -1,8 +1,8 @@ /* +----------------------------------------------------------------------+ - | PHP Version 5 | + | PHP Version 7 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2013 The PHP Group | + | Copyright (c) 1997-2014 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -23,7 +23,7 @@ #ifndef PHP_CRYPT_H #define PHP_CRYPT_H -PHPAPI int php_crypt(const char *password, const int pass_len, const char *salt, int salt_len, char **result); +PHPAPI zend_string *php_crypt(const char *password, const int pass_len, const char *salt, int salt_len); PHP_FUNCTION(crypt); #if HAVE_CRYPT PHP_MINIT_FUNCTION(crypt); |