summaryrefslogtreecommitdiff
path: root/walk.h
diff options
context:
space:
mode:
Diffstat (limited to 'walk.h')
-rw-r--r--walk.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/walk.h b/walk.h
index e01b5d97..7ad8264c 100644
--- a/walk.h
+++ b/walk.h
@@ -69,7 +69,8 @@ void handle_transaction(transaction_t * xact,
for (transactions_list::iterator i = xact->entry->transactions.begin();
i != xact->entry->transactions.end();
i++)
- if (! ((*i)->flags & TRANSACTION_AUTO) &&
+ if ((! (flags & OTHER_TRANSACTIONS) ||
+ ! ((*i)->flags & TRANSACTION_AUTO)) &&
! ((*i)->dflags & TRANSACTION_HANDLED) &&
(*i == xact ?
(flags & MATCHING_TRANSACTIONS) : (flags & OTHER_TRANSACTIONS))) {