Browse Source

Commit forgotten fix in crypt.c, oversight of a BC-problem

experimental/apache_hooks
Jeroen van Wolffelaar 25 years ago
parent
commit
43c2bc364f
  1. 3
      ext/standard/crypt.c

3
ext/standard/crypt.c

@ -106,7 +106,8 @@ PHP_MINIT_FUNCTION(crypt)
PHP_RINIT_FUNCTION(crypt)
{
if(!php_crypt_rand_seeded) {
php_srand(time(0) * getpid() * (php_combined_lcg(TSRMLS_C) * 10000.0));
/* FIXME (jeroen): temporary fix for RAND_REDESIGN */
php_srand_sys(time(0) * getpid() * (php_combined_lcg(TSRMLS_C) * 10000.0));
php_crypt_rand_seeded=1;
}
return SUCCESS;

Loading…
Cancel
Save