diff options
author | Anthony Ferrara <ircmaxell@gmail.com> | 2012-06-29 11:32:25 -0400 |
---|---|---|
committer | Anthony Ferrara <ircmaxell@gmail.com> | 2012-06-29 11:32:25 -0400 |
commit | 9c1445c6bcee99dbe1eeb9eb8eb6cd626ca72a9c (patch) | |
tree | 07289f7e4553bb05deb6e94450afe8eadec5c4be /ext/standard/php_crypt.h | |
parent | 9e18e578f0e7f30c2d73ae38620b5fd228ac21eb (diff) | |
download | php-git-9c1445c6bcee99dbe1eeb9eb8eb6cd626ca72a9c.tar.gz |
More refactoring of crypt into php_crypt, and fixing memory allocation
Diffstat (limited to 'ext/standard/php_crypt.h')
-rw-r--r-- | ext/standard/php_crypt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_crypt.h b/ext/standard/php_crypt.h index 1dffb0bc3e..7410a8c328 100644 --- a/ext/standard/php_crypt.h +++ b/ext/standard/php_crypt.h @@ -23,7 +23,7 @@ #ifndef PHP_CRYPT_H #define PHP_CRYPT_H -PHPAPI int crypt_execute(const char *password, const int pass_len, const char *salt, int salt_len, char **result); +PHPAPI int php_crypt(const char *password, const int pass_len, const char *salt, int salt_len, char **result); PHP_FUNCTION(crypt); #if HAVE_CRYPT PHP_MINIT_FUNCTION(crypt); |