diff options
author | Dan McGee <dan@archlinux.org> | 2011-04-22 02:01:06 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-04-24 17:48:33 +0200 |
commit | 31e55b8049ed001a993441f3efc8ffebdf360061 (patch) | |
tree | ef01f59eed8cdbf5d5e9f76c1500b9ef30ed67e9 /lib/libalpm/db.h | |
parent | a7d33d0c36420462b3de5c7e2f8327ddbda2a129 (diff) | |
download | pacman-31e55b8049ed001a993441f3efc8ffebdf360061.tar.gz pacman-31e55b8049ed001a993441f3efc8ffebdf360061.tar.xz |
signing: let GPGME handle loading signatures from files
Rather than go through all the hassle of doing this ourselves, just let
GPGME handle the work by passing it a file handle.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/db.h')
-rw-r--r-- | lib/libalpm/db.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libalpm/db.h b/lib/libalpm/db.h index 204a0be0..399e2d56 100644 --- a/lib/libalpm/db.h +++ b/lib/libalpm/db.h @@ -63,8 +63,6 @@ struct __pmdb_t { pmpkghash_t *pkgcache; alpm_list_t *grpcache; alpm_list_t *servers; - /* do not access directly, use _alpm_db_pgpsig(db) for lazy access */ - pmpgpsig_t pgpsig; pgp_verify_t pgp_verify; struct db_operations *ops; @@ -81,7 +79,6 @@ alpm_list_t *_alpm_db_search(pmdb_t *db, const alpm_list_t *needles); pmdb_t *_alpm_db_register_local(void); pmdb_t *_alpm_db_register_sync(const char *treename); void _alpm_db_unregister(pmdb_t *db); -const pmpgpsig_t *_alpm_db_pgpsig(pmdb_t *db); /* be_*.c, backend specific calls */ int _alpm_local_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq); |