summaryrefslogtreecommitdiff
path: root/ext/standard/password.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2014-04-30 18:32:42 +0400
committerDmitry Stogov <dmitry@zend.com>2014-04-30 18:32:42 +0400
commit17d027ed47c1f07b397a611431d28ad0e0107146 (patch)
treeda6cadcd3ca0cad02dd4ff39f027575070873cbd /ext/standard/password.c
parent6a911e833f6b6dcac669a60808e96dc2c4f391d3 (diff)
downloadphp-git-17d027ed47c1f07b397a611431d28ad0e0107146.tar.gz
Split IS_BOOL into IS_FALSE and IS_TRUE
Diffstat (limited to 'ext/standard/password.c')
-rw-r--r--ext/standard/password.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/password.c b/ext/standard/password.c
index 738bdcc7ac..aa50ab1f00 100644
--- a/ext/standard/password.c
+++ b/ext/standard/password.c
@@ -376,7 +376,8 @@ PHP_FUNCTION(password_hash)
}
zval_dtor(&cast_option_buffer);
}
- case IS_BOOL:
+ case IS_FALSE:
+ case IS_TRUE:
case IS_NULL:
case IS_RESOURCE:
case IS_ARRAY: