]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix cats dll build on Win32 after db_update_job_end_record
authorKern Sibbald <kern@sibbald.com>
Mon, 19 May 2008 17:13:29 +0000 (17:13 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 19 May 2008 17:13:29 +0000 (17:13 +0000)
     calling sequence change

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6990 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/bdb.c
bacula/src/cats/bdb_update.c
bacula/technotes-2.3

index f52cc74899a96d0dd6e297c431ef5be3ba000e3e..2544192f16af33dd8b8deedd144e161105e9e615 100644 (file)
@@ -742,7 +742,7 @@ bool db_update_job_start_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr)
  * This is called at Job termination time to add all the
  * other fields to the job record.
  */
-int db_update_job_end_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr)
+int db_update_job_end_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr, bool stats_enabled)
 {
    return 0;
 }
index 21aa1f24c3eebb27e1c7637bf93e88966db83180..a9c0e530ef56089feb3fe9bfc6e741ec7748730b 100644 (file)
@@ -16,7 +16,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2001-2006 Free Software Foundation Europe e.V.
+   Copyright (C) 2001-2008 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -75,7 +75,7 @@ bool db_update_job_start_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr)
  * This is called at Job termination time to add all the
  * other fields to the job record.
  */
-int db_update_job_end_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr)
+int db_update_job_end_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr, bool stats_enabled)
 {
    return 0;
 }
index 62ac12528d6156eb15b16b916dc4bff5ce35e29c..b5d549ff8a4ef71360182a8c4d97958854db8ae7 100644 (file)
@@ -25,6 +25,8 @@ Add long term statistics job table
 
 General:
 19May08
+kes  Fix cats dll build on Win32 after db_update_job_end_record
+     calling sequence change.
 ebl  Switch to tokyo dbm instead of htable in accurate code
 ebl  Include tokyo dbm to bacula source tree
 17May08