From: David Soria Parra Date: Mon, 11 Jan 2010 16:22:12 +0000 (+0000) Subject: Fixes #50496. Drop stdbool.h dependency as it requires _STDC_C99 set on some systems. X-Git-Tag: php-5.4.0alpha1~459 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33fc7d77d7d0f7c85025b8aa82d62b154c4bc71f;p=php Fixes #50496. Drop stdbool.h dependency as it requires _STDC_C99 set on some systems. --- diff --git a/ext/standard/crypt_sha256.c b/ext/standard/crypt_sha256.c index 7e632de9f7..ea7883ab06 100644 --- a/ext/standard/crypt_sha256.c +++ b/ext/standard/crypt_sha256.c @@ -12,7 +12,6 @@ #ifdef PHP_WIN32 # include "win32/php_stdint.h" -# include "win32/php_stdbool.h" # define __alignof__ __alignof # define alloca _alloca #else @@ -21,7 +20,6 @@ # elif HAVE_STDINT_H # include # endif -# include #endif #include @@ -364,7 +362,7 @@ char * php_sha256_crypt_r(const char *key, const char *salt, char *buffer, int b char *s_bytes; /* Default number of rounds. */ size_t rounds = ROUNDS_DEFAULT; - bool rounds_custom = false; + zend_bool rounds_custom = 0; /* Find beginning of salt string. The prefix should normally always be present. Just in case it is not. */ @@ -380,7 +378,7 @@ char * php_sha256_crypt_r(const char *key, const char *salt, char *buffer, int b if (*endp == '$') { salt = endp + 1; rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX)); - rounds_custom = true; + rounds_custom = 1; } } diff --git a/ext/standard/crypt_sha512.c b/ext/standard/crypt_sha512.c index f339dbb810..22f7e7fa79 100644 --- a/ext/standard/crypt_sha512.c +++ b/ext/standard/crypt_sha512.c @@ -11,7 +11,6 @@ #include #ifdef PHP_WIN32 # include "win32/php_stdint.h" -# include "win32/php_stdbool.h" # define __alignof__ __alignof # define alloca _alloca #else @@ -20,7 +19,6 @@ # elif HAVE_STDINT_H # include # endif -# include #endif #include @@ -391,7 +389,7 @@ php_sha512_crypt_r(const char *key, const char *salt, char *buffer, int buflen) char *s_bytes; /* Default number of rounds. */ size_t rounds = ROUNDS_DEFAULT; - bool rounds_custom = false; + zend_bool rounds_custom = 0; /* Find beginning of salt string. The prefix should normally always be present. Just in case it is not. */ @@ -408,7 +406,7 @@ php_sha512_crypt_r(const char *key, const char *salt, char *buffer, int buflen) if (*endp == '$') { salt = endp + 1; rounds = MAX(ROUNDS_MIN, MIN(srounds, ROUNDS_MAX)); - rounds_custom = true; + rounds_custom = 1; } }