diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2006-03-21 19:38:00 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2006-03-21 19:38:00 +0000 |
commit | 839a64df411115599bdef7a5c14d180111842523 (patch) | |
tree | 135a50f356637a81207d662d23eb5101a4450a2c /lib/libalpm/alpm.c | |
parent | ad2c7463c9b3ccf35ed40d8fa4cc21309048bdbc (diff) | |
download | pacman-839a64df411115599bdef7a5c14d180111842523.tar.xz |
fixed a regression (patch from VMiklos <vmiklos@frugalware.org>)
Diffstat (limited to 'lib/libalpm/alpm.c')
-rw-r--r-- | lib/libalpm/alpm.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index dddeaeff..70b1bb78 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -292,7 +292,6 @@ void *alpm_db_getinfo(PM_DB *db, unsigned char parm) int alpm_db_update(PM_DB *db, char *archive) { PMList *lp; - char path[PATH_MAX]; /* Sanity checks */ ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1)); @@ -323,9 +322,8 @@ int alpm_db_update(PM_DB *db, char *archive) /* ORE we should not simply unpack the archive, but better parse it and db_write each entry (see sync_load_dbarchive to get archive content) */ - snprintf(path, PATH_MAX, "%s/%s", db->path, db->treename); _alpm_log(PM_LOG_FLOW2, "unpacking %s", archive); - if(_alpm_unpack(archive, path, NULL)) { + if(_alpm_unpack(archive, db->path, NULL)) { RET_ERR(PM_ERR_SYSTEM, -1); } |