diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-25 18:15:25 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-25 18:15:25 +0000 |
commit | e8275fa9644181e9347e983f74b28f313103b888 (patch) | |
tree | 649389331a75ded168bc08d1d12a9ddc2a92e643 /lib/libalpm/util.h | |
parent | ea9e9ae22e674f73028906db7699e3e4207d4f61 (diff) | |
download | pacman-e8275fa9644181e9347e983f74b28f313103b888.tar.xz |
Moved downloaded db unpacking to the backend files, to easier allow conversion
from db to whatever format we need.
Diffstat (limited to 'lib/libalpm/util.h')
-rw-r--r-- | lib/libalpm/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index 63ba00c1..c96c13bf 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -60,7 +60,7 @@ char *_alpm_strtoupper(char *str); char *_alpm_strtrim(char *str); int _alpm_lckmk(char *file); int _alpm_lckrm(char *file); -int _alpm_unpack(char *archive, const char *prefix, const char *fn); +int _alpm_unpack(const char *archive, const char *prefix, const char *fn); int _alpm_rmrf(char *path); int _alpm_logaction(unsigned char usesyslog, FILE *f, char *fmt, ...); int _alpm_ldconfig(char *root); |