From f69ea25a7f1fd307f4251c5b856339803ef117a4 Mon Sep 17 00:00:00 2001 From: Michael Larson Date: Thu, 10 Jun 2010 13:50:30 -0700 Subject: fix for bug 5679. --- src/commit2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commit2.c b/src/commit2.c index fabc7ae..45a1a11 100644 --- a/src/commit2.c +++ b/src/commit2.c @@ -1264,7 +1264,7 @@ validate_func(GNode *node, gpointer data) } //don't perform validation checks on disabled nodes - if (d->_disable_op == K_LOCAL_DISABLE_OP) { + if ((d->_disable_op == K_LOCAL_DISABLE_OP) || (d->_disable_op == (K_LOCAL_DISABLE_OP | K_ACTIVE_DISABLE_OP))) { return FALSE; //SHOULD only hit the case where the node is locally disabled or globally disabled and not in a transition to active state } -- cgit v1.2.3