summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/db.h
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-06-28 07:00:46 +0200
committerAllan McRae <allan@archlinux.org>2011-06-28 15:28:24 +0200
commit7633c14bd5d8461c28ab900d3ddbec5f649932ee (patch)
tree3e4c5b292679745a73be6549f117eb24b30d08e9 /lib/libalpm/db.h
parent028b965e1a71aa85ba3772e20146d40d9006d8c9 (diff)
downloadpacman-7633c14bd5d8461c28ab900d3ddbec5f649932ee.tar.gz
pacman-7633c14bd5d8461c28ab900d3ddbec5f649932ee.tar.xz
Rename _pmdbstatus_t to _alpm_dbstatus_t
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/db.h')
-rw-r--r--lib/libalpm/db.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/db.h b/lib/libalpm/db.h
index 83fbcc78..10464b5c 100644
--- a/lib/libalpm/db.h
+++ b/lib/libalpm/db.h
@@ -44,7 +44,7 @@ typedef enum _alpm_dbinfrq_t {
} alpm_dbinfrq_t;
/** Database status. Bitflags. */
-enum _pmdbstatus_t {
+enum _alpm_dbstatus_t {
DB_STATUS_VALID = (1 << 0),
DB_STATUS_PKGCACHE = (1 << 1),
DB_STATUS_GRPCACHE = (1 << 2)
@@ -64,7 +64,7 @@ struct __alpm_db_t {
/* also indicates whether we are RO or RW */
int is_local;
/* flags determining validity, loaded caches, etc. */
- enum _pmdbstatus_t status;
+ enum _alpm_dbstatus_t status;
alpm_pkghash_t *pkgcache;
alpm_list_t *grpcache;
alpm_list_t *servers;