From: Felipe Pena Date: Sat, 23 Nov 2013 15:34:36 +0000 (-0200) Subject: - Fixed typo X-Git-Tag: php-5.6.0alpha1~110^2~125^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b0f7344919d46c3517d48c9fe7518e5a68339a1a;p=php - Fixed typo --- diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index f34eaaf030..5db01227d8 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -173,10 +173,10 @@ PHPDBG_COMMAND(exec) /* {{{ */ if (sb.st_mode & (S_IFREG|S_IFLNK)) { char *res = phpdbg_resolve_path(param->str TSRMLS_CC); size_t res_len = strlen(res); - - if ((res_len != PHPDBG_G(exec_len)) || + + if ((res_len != PHPDBG_G(exec_len)) || (memcmp(res, PHPDBG_G(exec), res_len) != SUCCESS)) { - + if (PHPDBG_G(exec)) { phpdbg_notice("Unsetting old execution context: %s", PHPDBG_G(exec)); efree(PHPDBG_G(exec)); @@ -609,7 +609,7 @@ PHPDBG_COMMAND(eval) /* {{{ */ !(PHPDBG_G(flags) & PHPDBG_IS_STEPONEVAL)) { PHPDBG_G(flags) |= PHPDBG_IS_STEPPING; } - + CG(unclean_shutdown) = 0; } break; @@ -1083,7 +1083,7 @@ static inline int phpdbg_call_register(phpdbg_input_t *input TSRMLS_DC) /* {{{ * } phpdbg_debug( - "created %d params from %d argvuments", + "created %d params from %d arguments", fci.param_count, input->argc); zend_call_function(&fci, NULL TSRMLS_CC);