]> git.sur5r.net Git - bacula/bacula/commitdiff
Use jcr->is_xxx instead of direct tests
authorKern Sibbald <kern@sibbald.com>
Thu, 24 Feb 2011 17:18:54 +0000 (18:18 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:43:28 +0000 (14:43 +0200)
bacula/src/dird/ua_run.c

index 95036f5eb18c964bc5a7671a4f3b971caeccfbfd..5eeaa07c32c976e673253b162fafd613a920559a 100644 (file)
@@ -525,8 +525,8 @@ static bool reset_restore_context(UAContext *ua, JCR *jcr, run_ctx &rc)
 
 
    /* If pool changed, update migration write storage */
-   if (jcr->getJobType() == JT_MIGRATE || jcr->getJobType() == JT_COPY ||
-      (jcr->getJobType() == JT_BACKUP && jcr->getJobLevel() == L_VIRTUAL_FULL)) {
+   if (jcr->is_JobType(JT_MIGRATE) || jcr->is_JobType(JT_COPY) ||
+      (jcr->is_JobType(JT_BACKUP) && jcr->is_JobLevel(L_VIRTUAL_FULL))) {
       if (!set_migration_wstorage(jcr, rc.pool)) {
          return false;
       }