summaryrefslogtreecommitdiff
path: root/phpdbg_set.c
diff options
context:
space:
mode:
Diffstat (limited to 'phpdbg_set.c')
-rw-r--r--phpdbg_set.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_set.c b/phpdbg_set.c
index f3265604d0..a0f5e74a70 100644
--- a/phpdbg_set.c
+++ b/phpdbg_set.c
@@ -53,7 +53,7 @@ PHPDBG_SET(break) /* {{{ */
if (strncasecmp(param->str, PHPDBG_STRL("on")) == 0) {
PHPDBG_G(flags) |= PHPDBG_IS_BP_ENABLED;
} else if (strncasecmp(param->str, PHPDBG_STRL("off")) == 0) {
- PHPDBG_G(flags) ^= PHPDBG_IS_BP_ENABLED;
+ PHPDBG_G(flags) &= ~PHPDBG_IS_BP_ENABLED;
}
break;