]> granicus.if.org Git - php/commitdiff
Fix ZTS build
authorNikita Popov <nikic@php.net>
Tue, 29 Oct 2013 19:01:37 +0000 (20:01 +0100)
committerNikita Popov <nikic@php.net>
Tue, 29 Oct 2013 19:01:37 +0000 (20:01 +0100)
ext/standard/crypt.c

index 81c0bf3e0c53602434298c15a66936411ac27864..354c263afbd0c351346231a1614f257d9bc1fbd3 100644 (file)
@@ -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) */