summaryrefslogtreecommitdiff
path: root/ext/standard/php_password.h
diff options
context:
space:
mode:
authorAnthony Ferrara <ircmaxell@gmail.com>2012-09-17 10:52:07 -0400
committerAnthony Ferrara <ircmaxell@gmail.com>2012-09-17 10:52:07 -0400
commite034a46bdc36fb82957f5e503fa730776dfbba11 (patch)
tree65360694c93f528b6477a00a5f0b0db6abe42d4f /ext/standard/php_password.h
parent83cfff4593bd3bd7791f32795e9b5bda446cd8e2 (diff)
downloadphp-git-e034a46bdc36fb82957f5e503fa730776dfbba11.tar.gz
A bunch of naming convention fixes. No functionality changes
Diffstat (limited to 'ext/standard/php_password.h')
-rw-r--r--ext/standard/php_password.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/php_password.h b/ext/standard/php_password.h
index c812e2c492..079f187703 100644
--- a/ext/standard/php_password.h
+++ b/ext/standard/php_password.h
@@ -28,14 +28,14 @@ PHP_FUNCTION(password_get_info);
PHP_MINIT_FUNCTION(password);
-#define PHP_PASSWORD_DEFAULT PASSWORD_BCRYPT
+#define PHP_PASSWORD_DEFAULT PHP_PASSWORD_BCRYPT
#define PHP_PASSWORD_BCRYPT_COST 10
typedef enum {
- PASSWORD_UNKNOWN,
- PASSWORD_BCRYPT
-} php_password_algos;
+ PHP_PASSWORD_UNKNOWN,
+ PHP_PASSWORD_BCRYPT
+} php_password_algo;
#endif