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

This commit is contained in:
Jeroen van Wolffelaar 2001-08-22 22:11:57 +00:00
parent 8ade27507a
commit 43c2bc364f

View file

@ -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;