From: Felipe Pena Date: Sat, 23 Nov 2013 16:51:19 +0000 (-0200) Subject: - Fix comment again and checking X-Git-Tag: php-5.6.0alpha1~110^2~125^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf227df9571c47fa728b77c849aea607edfeccc0;p=php - Fix comment again and checking --- diff --git a/phpdbg.c b/phpdbg.c index e4eff77e44..b252dcadff 100644 --- a/phpdbg.c +++ b/phpdbg.c @@ -446,8 +446,8 @@ static inline void phpdbg_sigint_handler(int signo) /* {{{ */ TSRMLS_FETCH(); if (EG(in_execution)) { - /* we don't want to set signalled while phpdbg is interactive */ - if (!(PHPDBG_G(flags) & PHPDBG_IS_INTERACTIVE)) { + /* we don't want to set signalled while phpdbg is not interactive */ + if (PHPDBG_G(flags) & PHPDBG_IS_INTERACTIVE) { PHPDBG_G(flags) |= PHPDBG_IS_SIGNALED; } } else {