diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-12-01 10:32:29 +0100 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-12-01 10:32:29 +0100 |
commit | 08dca1593f82dfa4b5f1199b5b1f4d7099719be9 (patch) | |
tree | b1b383f93524ebfcb5bfcc98924668f29dc88ba3 /lib/libalpm/db.c | |
parent | 6c68723905ba1d8cee83e4af88b0ac8ee9a408aa (diff) | |
download | pacman-08dca1593f82dfa4b5f1199b5b1f4d7099719be9.tar.gz pacman-08dca1593f82dfa4b5f1199b5b1f4d7099719be9.tar.xz |
* Cosmetic changes and typo fixes
* IgnorePkg and --ignore work again
* Partial changes to support removal of conflicts for -U and -A (INCOMPLETE)
Diffstat (limited to 'lib/libalpm/db.c')
-rw-r--r-- | lib/libalpm/db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/db.c b/lib/libalpm/db.c index c3e071b0..6cb6fe8f 100644 --- a/lib/libalpm/db.c +++ b/lib/libalpm/db.c @@ -184,7 +184,7 @@ pmdb_t *_alpm_db_register(char *treename, alpm_cb_db_register callback) for(i = handle->dbs_sync; i; i = i->next) { pmdb_t *sdb = i->data; if(strcmp(treename, sdb->treename) == 0) { - _alpm_log(PM_LOG_DEBUG, _("attempt to re-register the '%s' databse, using existing"), sdb->treename); + _alpm_log(PM_LOG_DEBUG, _("attempt to re-register the '%s' database, using existing"), sdb->treename); return sdb; } } |