summaryrefslogtreecommitdiff
path: root/src/sp_disabled_functions.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp_disabled_functions.c')
-rw-r--r--src/sp_disabled_functions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp_disabled_functions.c b/src/sp_disabled_functions.c
index f35f5ca..a7136df 100644
--- a/src/sp_disabled_functions.c
+++ b/src/sp_disabled_functions.c
@@ -574,11 +574,11 @@ ZEND_FUNCTION(eval_blacklist_callback) {
574 SP_TOKEN_EVAL_BLACKLIST); 574 SP_TOKEN_EVAL_BLACKLIST);
575 } 575 }
576 if (config_eval->simulation) { 576 if (config_eval->simulation) {
577 sp_log_msg("eval", SP_LOG_SIMULATION, 577 sp_log_simulation("eval",
578 "A call to %s was tried in eval, in %s:%d, logging it.", 578 "A call to %s was tried in eval, in %s:%d, logging it.",
579 current_function_name, ZSTR_VAL(filename), line_number); 579 current_function_name, ZSTR_VAL(filename), line_number);
580 } else { 580 } else {
581 sp_log_msg("eval", SP_LOG_DROP, 581 sp_log_drop("eval",
582 "A call to %s was tried in eval, in %s:%d, dropping it.", 582 "A call to %s was tried in eval, in %s:%d, dropping it.",
583 current_function_name, ZSTR_VAL(filename), line_number); 583 current_function_name, ZSTR_VAL(filename), line_number);
584 } 584 }