From 64c1cf792184661a1d3dd73329f129172e688f17 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Tue, 28 Jun 2011 14:04:00 +1000 Subject: Rename pmhandle_t to alpm_handle_t Signed-off-by: Allan McRae --- lib/libalpm/db.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libalpm/db.h') diff --git a/lib/libalpm/db.h b/lib/libalpm/db.h index 03187342..a0c4d6a1 100644 --- a/lib/libalpm/db.h +++ b/lib/libalpm/db.h @@ -57,7 +57,7 @@ struct db_operations { /* Database */ struct __pmdb_t { - pmhandle_t *handle; + alpm_handle_t *handle; char *treename; /* do not access directly, use _alpm_db_path(db) for lazy access */ char *_path; @@ -81,8 +81,8 @@ const char *_alpm_db_path(pmdb_t *db); char *_alpm_db_sig_path(pmdb_t *db); int _alpm_db_cmp(const void *d1, const void *d2); alpm_list_t *_alpm_db_search(pmdb_t *db, const alpm_list_t *needles); -pmdb_t *_alpm_db_register_local(pmhandle_t *handle); -pmdb_t *_alpm_db_register_sync(pmhandle_t *handle, const char *treename, +pmdb_t *_alpm_db_register_local(alpm_handle_t *handle); +pmdb_t *_alpm_db_register_sync(alpm_handle_t *handle, const char *treename, pgp_verify_t level); void _alpm_db_unregister(pmdb_t *db); -- cgit v1.2.3-24-g4f1b