From: Nikita Popov Date: Tue, 29 Oct 2013 19:01:37 +0000 (+0100) Subject: Fix ZTS build X-Git-Tag: php-5.6.0alpha1~222 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=82eca388d201aa39984521694c92f1955d646838;p=php Fix ZTS build --- diff --git a/ext/standard/crypt.c b/ext/standard/crypt.c index 81c0bf3e0c..354c263afb 100644 --- a/ext/standard/crypt.c +++ b/ext/standard/crypt.c @@ -273,7 +273,7 @@ PHP_FUNCTION(crypt) if (salt_in) { memcpy(salt, salt_in, MIN(PHP_MAX_SALT_LEN, salt_in_len)); } else { - php_error_docref(NULL TSRMLS_C, E_NOTICE, "No salt parameter was specified. You must use a randomly generated salt and a strong hash function to produce a secure hash."); + php_error_docref(NULL TSRMLS_CC, E_NOTICE, "No salt parameter was specified. You must use a randomly generated salt and a strong hash function to produce a secure hash."); } /* The automatic salt generation covers standard DES, md5-crypt and Blowfish (simple) */