diff options
author | Dan McGee <dan@archlinux.org> | 2007-11-16 11:51:26 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-11-16 11:51:26 -0600 |
commit | 3cd684b41dd606d42da76fcc3911be446dd3b78b (patch) | |
tree | f44f44424df6009153376b314e77facbd0f3f173 /lib/libalpm/db.h | |
parent | 6f2b43624915e3e1928cad2bbe14fd8b1ab21e12 (diff) | |
download | pacman-3cd684b41dd606d42da76fcc3911be446dd3b78b.tar.xz |
libalpm: simplify sync db lastupdate
Legacy code is hitting the trash here. Remove unnecessary _alpm_time2string
time storage abstraction in favor of just writing the time_t value to the
disk.
The only drawback is that everyone's sync DBs will have to be updated at
least once so that the lastupdate values are stored right. :)
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/db.h')
-rw-r--r-- | lib/libalpm/db.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libalpm/db.h b/lib/libalpm/db.h index 16e12986..2549cdc8 100644 --- a/lib/libalpm/db.h +++ b/lib/libalpm/db.h @@ -25,6 +25,7 @@ #include "alpm.h" #include <limits.h> +#include <time.h> /* Database entries */ typedef enum _pmdbinfrq_t { @@ -65,8 +66,8 @@ pmpkg_t *_alpm_db_scan(pmdb_t *db, const char *target); int _alpm_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq); int _alpm_db_write(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq); int _alpm_db_remove(pmdb_t *db, pmpkg_t *info); -int _alpm_db_getlastupdate(const pmdb_t *db, char *ts); -int _alpm_db_setlastupdate(const pmdb_t *db, char *ts); +time_t _alpm_db_getlastupdate(const pmdb_t *db); +int _alpm_db_setlastupdate(const pmdb_t *db, time_t time); #endif /* _ALPM_DB_H */ |