Skip to content

Commit

Permalink
Fix level override.
Browse files Browse the repository at this point in the history
Fixes #348: When using pool overrides a level change doesn't
            change the pool used
  • Loading branch information
Marco van Wieringen committed Oct 12, 2014
1 parent 9bb6880 commit 1ffc460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dird/ua_run.c
Expand Up @@ -510,7 +510,7 @@ int modify_job_parameters(UAContext *ua, JCR *jcr, RUN_CTX &rc)
switch (jcr->getJobType()) {
case JT_BACKUP:
if (!jcr->is_JobLevel(L_VIRTUAL_FULL)) {
apply_pool_overrides(jcr);
apply_pool_overrides(jcr, true);
}
break;
default:
Expand Down

0 comments on commit 1ffc460

Please sign in to comment.