summaryrefslogtreecommitdiff
path: root/phpdbg_parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'phpdbg_parser.c')
-rw-r--r--phpdbg_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpdbg_parser.c b/phpdbg_parser.c
index ef9d4f4333..79745cef8b 100644
--- a/phpdbg_parser.c
+++ b/phpdbg_parser.c
@@ -259,11 +259,11 @@ int phpdbg_stack_execute(phpdbg_param_t *stack, char **why) {
switch (command->type) {
case EVAL_PARAM:
- phpdbg_notice("eval (%s)", command->str);
+ PHPDBG_COMMAND_HANDLER(eval)(command, NULL TSRMLS_CC);
break;
case SHELL_PARAM:
- phpdbg_notice("shell (%s)", command->str);
+ PHPDBG_COMMAND_HANDLER(shell)(command, NULL TSRMLS_CC);
break;
case STR_PARAM: {