micro-optimization/-clarification: swap condition order

This commit is contained in:
Oswald Buddenhagen 2013-11-24 19:50:46 +01:00
parent 014d9b9081
commit 9a62521cff

View File

@ -1333,7 +1333,7 @@ box_loaded( int sts, void *aux )
/* a) & b.3) / c.3) */
if (svars->chan->ops[t] & OP_FLAGS) {
sflags = srec->msg[1-t]->flags;
if ((srec->status & (S_EXPIRE|S_EXPIRED)) && (t == M)) {
if ((t == M) && (srec->status & (S_EXPIRE|S_EXPIRED))) {
/* Don't propagate deletion resulting from expiration. */
sflags &= ~F_DELETED;
}