]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Use utime_t instead of time_t for update_stats()
authorEric Bollengier <eric@eb.homelinux.org>
Mon, 15 Sep 2008 21:11:45 +0000 (21:11 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 15 Sep 2008 21:11:45 +0000 (21:11 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7597 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/protos.h
bacula/src/cats/sql_update.c
bacula/technotes-2.5

index f52e73029fcb40222ef918a22ecaf25a00b36bde..0ff887981afd2f14c88b183a6232594c99be6450 100644 (file)
@@ -134,6 +134,6 @@ int  db_update_counter_record(JCR *jcr, B_DB *mdb, COUNTER_DBR *cr);
 int  db_add_digest_to_file_record(JCR *jcr, B_DB *mdb, FileId_t FileId, char *digest, int type);
 int  db_mark_file_record(JCR *jcr, B_DB *mdb, FileId_t FileId, JobId_t JobId);
 void db_make_inchanger_unique(JCR *jcr, B_DB *mdb, MEDIA_DBR *mr);
-int db_update_stats(JCR *jcr, B_DB *mdb, time_t age);
+int db_update_stats(JCR *jcr, B_DB *mdb, utime_t age);
 
 #endif /* __SQL_PROTOS_H */
index 82a64ac2af716fb20a471bd93b99e41b07cb0dd1..0e0c8545bf00c1d13c648ee50435084b714dec37 100644 (file)
@@ -130,7 +130,7 @@ db_update_job_start_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr)
  * age seconds
  */
 int
-db_update_stats(JCR *jcr, B_DB *mdb, time_t age)
+db_update_stats(JCR *jcr, B_DB *mdb, utime_t age)
 {
    char ed1[30];
    utime_t now = (utime_t)time(NULL);
index 696db3f6f8377301c832e12ca35fb46f9e1bcbf5..2c071dcd0f58931aa35d555f62a13eb7402c70a3 100644 (file)
@@ -18,6 +18,8 @@ dbdriver
 remove reader/writer in FOPTS????
 
 General:
+15Sep08
+ebl  Remove time_t from update_stats()
 14Sep08
 kes  Modify the license of the example plugin program to allow
      it to be used by anyone for making a Bacula plugin.