mirror of
https://github.com/moparisthebest/pacman
synced 2025-01-10 21:38:19 -05:00
libalpm/db.c: change two warnings to errors
These two warnings really indicate failure, so the message they print should do so as well. Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
cb04b3a5f3
commit
52b7fd81f5
@ -694,7 +694,7 @@ pmdb_t *_alpm_db_register_local(void)
|
|||||||
/* make sure the database directory exists */
|
/* make sure the database directory exists */
|
||||||
dbpath = alpm_option_get_dbpath();
|
dbpath = alpm_option_get_dbpath();
|
||||||
if(!dbpath) {
|
if(!dbpath) {
|
||||||
_alpm_log(PM_LOG_WARNING, _("database path is undefined\n"));
|
_alpm_log(PM_LOG_ERROR, _("database path is undefined\n"));
|
||||||
RET_ERR(PM_ERR_DB_OPEN, NULL);
|
RET_ERR(PM_ERR_DB_OPEN, NULL);
|
||||||
}
|
}
|
||||||
snprintf(path, PATH_MAX, "%slocal", dbpath);
|
snprintf(path, PATH_MAX, "%slocal", dbpath);
|
||||||
@ -745,7 +745,7 @@ pmdb_t *_alpm_db_register_sync(const char *treename)
|
|||||||
/* make sure the database directory exists */
|
/* make sure the database directory exists */
|
||||||
dbpath = alpm_option_get_dbpath();
|
dbpath = alpm_option_get_dbpath();
|
||||||
if(!dbpath) {
|
if(!dbpath) {
|
||||||
_alpm_log(PM_LOG_WARNING, _("database path is undefined\n"));
|
_alpm_log(PM_LOG_ERROR, _("database path is undefined\n"));
|
||||||
RET_ERR(PM_ERR_DB_OPEN, NULL);
|
RET_ERR(PM_ERR_DB_OPEN, NULL);
|
||||||
}
|
}
|
||||||
/* all sync DBs now reside in the sync/ subdir of the dbpath */
|
/* all sync DBs now reside in the sync/ subdir of the dbpath */
|
||||||
|
Loading…
Reference in New Issue
Block a user