Rename _pmdbstatus_t to _alpm_dbstatus_t
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
028b965e1a
commit
7633c14bd5
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ typedef enum _alpm_dbinfrq_t {
|
||||||
} alpm_dbinfrq_t;
|
} alpm_dbinfrq_t;
|
||||||
|
|
||||||
/** Database status. Bitflags. */
|
/** Database status. Bitflags. */
|
||||||
enum _pmdbstatus_t {
|
enum _alpm_dbstatus_t {
|
||||||
DB_STATUS_VALID = (1 << 0),
|
DB_STATUS_VALID = (1 << 0),
|
||||||
DB_STATUS_PKGCACHE = (1 << 1),
|
DB_STATUS_PKGCACHE = (1 << 1),
|
||||||
DB_STATUS_GRPCACHE = (1 << 2)
|
DB_STATUS_GRPCACHE = (1 << 2)
|
||||||
|
@ -64,7 +64,7 @@ struct __alpm_db_t {
|
||||||
/* also indicates whether we are RO or RW */
|
/* also indicates whether we are RO or RW */
|
||||||
int is_local;
|
int is_local;
|
||||||
/* flags determining validity, loaded caches, etc. */
|
/* flags determining validity, loaded caches, etc. */
|
||||||
enum _pmdbstatus_t status;
|
enum _alpm_dbstatus_t status;
|
||||||
alpm_pkghash_t *pkgcache;
|
alpm_pkghash_t *pkgcache;
|
||||||
alpm_list_t *grpcache;
|
alpm_list_t *grpcache;
|
||||||
alpm_list_t *servers;
|
alpm_list_t *servers;
|
||||||
|
|
Loading…
Add table
Reference in a new issue