]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix Win32 build after adding Base Job code
authorKern Sibbald <kern@sibbald.com>
Sat, 5 Dec 2009 16:06:11 +0000 (17:06 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 5 Dec 2009 16:06:11 +0000 (17:06 +0100)
bacula/src/cats/cats.h
bacula/src/cats/protos.h
bacula/src/cats/sql.c
bacula/src/cats/sql_get.c
bacula/src/dird/dird.c

index d252def6057d4ab5f5a4514a2ac4b09bb4c6037a..8c0d4f90c45129e786595a2c2f06fd2254f98a79 100644 (file)
@@ -1072,7 +1072,7 @@ private:
 /*
  * Exported globals from sql.c
  */
-extern int DLL_IMP_EXP db_type;        /* SQL engine type index */
+extern int CATS_IMP_EXP db_type;        /* SQL engine type index */
 
 /*
  * Some functions exported by sql.c for use within the
index 7f73c7b092e3b3d0ce5ae07dbe515963e879b07c..4d24db65c3595140c692bb6abe355402d9b33ab3 100644 (file)
@@ -59,7 +59,7 @@ void db_end_transaction(JCR *jcr, B_DB *mdb);
 int db_int64_handler(void *ctx, int num_fields, char **row);
 int db_list_handler(void *ctx, int num_fields, char **row);
 void db_thread_cleanup();
-void dbg_print_db(JCR *jcr, FILE *fp);
+void db_debug_print(JCR *jcr, FILE *fp);
 int db_int_handler(void *ctx, int num_fields, char **row);
 
 /* sql_create.c */
index 84219623151866d2dc70d4ee24faf5ea79dee470..8c875cfc4f7bc449f0f325f0729b899064788540 100644 (file)
@@ -826,7 +826,7 @@ bool db_open_batch_connexion(JCR *jcr, B_DB *mdb)
  * ie, after a fatal signal and before exiting the program
  * Print information about a B_DB object.
  */
-void dbg_print_db(JCR *jcr, FILE *fp)
+void db_debug_print(JCR *jcr, FILE *fp)
 {
    B_DB *mdb = jcr->db;
 
index 56bc5ac1e9a89977dabfb22bf382ae35b44cc986..3147b3a73c2397ec3f4ce8e2906a7785e687c64b 100644 (file)
@@ -116,7 +116,7 @@ int db_get_file_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr, FILE_DBR *fdbr)
    int stat = 0;
    char ed1[50], ed2[50], ed3[50];
 
-   if (jcr->get_JobLevel() == L_VERIFY_DISK_TO_CATALOG) {
+   if (jcr->getJobLevel() == L_VERIFY_DISK_TO_CATALOG) {
       Mmsg(mdb->cmd,
 "SELECT FileId, LStat, MD5 FROM File,Job WHERE "
 "File.JobId=Job.JobId AND File.PathId=%s AND "
index 2e3a4c7ce01cd6536a5f34093d8e89f1ae195f54..9c36130ea5cd28c988f04390a5f0678f9195c779 100644 (file)
@@ -329,7 +329,7 @@ int main (int argc, char *argv[])
 
    init_job_server(director->MaxConcurrentJobs);
 
-   dbg_jcr_add_hook(dbg_print_db); /* used to debug B_DB connexion after fatal signal */
+   dbg_jcr_add_hook(db_debug_print); /* used to debug B_DB connexion after fatal signal */
 
 //   init_device_resources();
 
@@ -552,7 +552,7 @@ void reload_config(int sig)
        * Hook all active jobs so that they release this table
        */
       foreach_jcr(jcr) {
-         if (jcr->get_JobType() != JT_SYSTEM) {
+         if (jcr->getJobType() != JT_SYSTEM) {
             reload_table[table].job_count++;
             job_end_push(jcr, reload_job_end_cb, (void *)((long int)table));
             njobs++;