diff options
author | Xavier Chantry <shiningxc@gmail.com> | 2009-10-10 22:49:24 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-10-11 15:18:47 -0500 |
commit | 14ab02e289668e30d33c473e00fc43e5dc457644 (patch) | |
tree | 1cd09f8ca603d61e5b0486bb55c3982c1d6416f5 /lib/libalpm/be_files.c | |
parent | 471b1fa54395f7f16939e213f50aaf76f390553b (diff) | |
download | pacman-14ab02e289668e30d33c473e00fc43e5dc457644.tar.xz |
Rework the alpm_unpack functions
Add support to extract a list of entries
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/be_files.c')
-rw-r--r-- | lib/libalpm/be_files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/be_files.c b/lib/libalpm/be_files.c index 51492d52..53bbda13 100644 --- a/lib/libalpm/be_files.c +++ b/lib/libalpm/be_files.c @@ -245,7 +245,7 @@ int SYMEXPORT alpm_db_update(int force, pmdb_t *db) /* uncompress the sync database */ checkdbdir(db); - ret = _alpm_unpack(dbfilepath, syncdbpath, NULL); + ret = _alpm_unpack(dbfilepath, syncdbpath, NULL, 0); if(ret) { free(dbfilepath); RET_ERR(PM_ERR_SYSTEM, -1); |