From 916bf19df17f7035569ff384fa8d6a5146e18af2 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Mon, 5 Dec 2011 16:13:50 +0100 Subject: [PATCH] Fix cats_test to use the new method names. --- bacula/src/tools/cats_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacula/src/tools/cats_test.c b/bacula/src/tools/cats_test.c index c134b7cc2c..76a09e0814 100644 --- a/bacula/src/tools/cats_test.c +++ b/bacula/src/tools/cats_test.c @@ -335,8 +335,8 @@ int main (int argc, char *argv[]) */ jcr = new_jcr(sizeof(JCR), NULL); - jcr->set_JobType(JT_CONSOLE); - jcr->set_JobLevel(L_NONE); + jcr->setJobType(JT_CONSOLE); + jcr->setJobLevel(L_NONE); jcr->JobStatus = JS_Running; bstrncpy(jcr->Job, "**dummy**", sizeof(jcr->Job)); jcr->JobId = pid; /* this is JobId on tape */ -- 2.39.5