1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-03-11 07:31:04 -04:00

changed alpm_db_register() prototype

This commit is contained in:
Aurelien Foret 2005-03-29 20:52:22 +00:00
parent d16c8be8a0
commit cca46deb6f
2 changed files with 16 additions and 15 deletions

View File

@ -141,36 +141,37 @@ int alpm_get_option(unsigned char parm, long *data)
* Databases
*/
int alpm_db_register(char *treename, PM_DB **db)
PM_DB *alpm_db_register(char *treename)
{
pmdb_t *db;
/* Sanity checks */
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
ASSERT(treename != NULL && strlen(treename) != 0, RET_ERR(PM_ERR_WRONG_ARGS, -1));
ASSERT(db != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, NULL));
ASSERT(treename != NULL && strlen(treename) != 0, RET_ERR(PM_ERR_WRONG_ARGS, NULL));
/* ORE
check if the db if already registered */
*db = db_open(handle->root, handle->dbpath, treename);
if(*db == NULL) {
db = db_open(handle->root, handle->dbpath, treename);
if(db == NULL) {
/* couldn't open the db directory - try creating it */
if(db_create(handle->root, handle->dbpath, treename) == -1) {
RET_ERR(PM_ERR_DB_CREATE, -1);
RET_ERR(PM_ERR_DB_CREATE, NULL);
}
*db = db_open(handle->root, handle->dbpath, treename);
if(*db == NULL) {
/* couldn't open the db directory, try creating it */
RET_ERR(PM_ERR_DB_OPEN, -1);
db = db_open(handle->root, handle->dbpath, treename);
if(db == NULL) {
/* couldn't open the db directory */
RET_ERR(PM_ERR_DB_OPEN, NULL);
}
}
if(strcmp(treename, "local") == 0) {
handle->db_local = *db;
handle->db_local = db;
} else {
handle->dbs_sync = pm_list_add(handle->dbs_sync, *db);
handle->dbs_sync = pm_list_add(handle->dbs_sync, db);
}
return(0);
return(db);
}
int alpm_db_unregister(PM_DB *db)

View File

@ -93,7 +93,7 @@ int alpm_get_option(unsigned char parm, long *data);
* Databases
*/
int alpm_db_register(char *treename, PM_DB **db);
PM_DB *alpm_db_register(char *treename);
int alpm_db_unregister(PM_DB *db);
int alpm_db_getlastupdate(PM_DB *db, char *ts);