summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/be_files.c
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-11-08 07:52:50 +0100
committerAaron Griffin <aaron@archlinux.org>2006-11-08 07:52:50 +0100
commit55f178c629ada663d2a8e5bbed029ec9482f00ea (patch)
treefbd271d7ef2d8c97df1727c02f6ab9b2508813ec /lib/libalpm/be_files.c
parent34931106d7653e73bb474e1d72aee4044f7d5a5d (diff)
downloadpacman-55f178c629ada663d2a8e5bbed029ec9482f00ea.tar.gz
pacman-55f178c629ada663d2a8e5bbed029ec9482f00ea.tar.xz
* Fixed an error message that should be a debug message
* Fixed "the big segfault" - dbs_sync list was being modified while iterating * over the list, big No-No. Now using a while loop over alpm_list_count.
Diffstat (limited to 'lib/libalpm/be_files.c')
-rw-r--r--lib/libalpm/be_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/be_files.c b/lib/libalpm/be_files.c
index 35a1e981..f90f6979 100644
--- a/lib/libalpm/be_files.c
+++ b/lib/libalpm/be_files.c
@@ -189,7 +189,7 @@ int _alpm_db_read(pmdb_t *db, unsigned int inforeq, pmpkg_t *info)
}
if(info == NULL || info->name[0] == 0 || info->version[0] == 0) {
- _alpm_log(PM_LOG_ERROR, _("invalid package entry provided to _alpm_db_read"));
+ _alpm_log(PM_LOG_DEBUG, _("invalid package entry provided to _alpm_db_read, skipping"));
return(-1);
}