case SCOPE_SESS: vars = &smp->strm->vars_sess; break;
case SCOPE_TXN: vars = &smp->strm->vars_txn; break;
case SCOPE_REQ:
- case SCOPE_RES: vars = &smp->strm->vars_reqres; break;
+ case SCOPE_RES:
+ default: vars = &smp->strm->vars_reqres; break;
}
if (vars->scope != var_desc->scope)
return 0;
case SCOPE_SESS: vars = &strm->vars_sess; break;
case SCOPE_TXN: vars = &strm->vars_txn; break;
case SCOPE_REQ:
- case SCOPE_RES: vars = &strm->vars_reqres; break;
+ case SCOPE_RES:
+ default: vars = &strm->vars_reqres; break;
}
if (vars->scope != scope)
return 0;
case SCOPE_SESS: vars = &strm->vars_sess; break;
case SCOPE_TXN: vars = &strm->vars_txn; break;
case SCOPE_REQ:
- case SCOPE_RES: vars = &strm->vars_reqres; break;
+ case SCOPE_RES:
+ default: vars = &strm->vars_reqres; break;
}
/* Check if the scope is avalaible a this point of processing. */