diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-09-03 14:56:24 +0400 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-09-03 14:56:24 +0400 |
commit | 58e771303c95f9d97d009602516b509866c3fb5a (patch) | |
tree | 9cf8ce0d4608d4531850177549cb70670544fbb4 /src/archive.c | |
parent | 7829f1191f1812f30c763a685dff1b61393f7491 (diff) | |
download | apk-tools-58e771303c95f9d97d009602516b509866c3fb5a.tar.gz apk-tools-58e771303c95f9d97d009602516b509866c3fb5a.tar.bz2 apk-tools-58e771303c95f9d97d009602516b509866c3fb5a.tar.xz apk-tools-58e771303c95f9d97d009602516b509866c3fb5a.zip |
index, version: support for repository descriptions (fixes #141)
ability embed description information to repository indexes
(e.g. repository name and version) and show it via "apk version -I".
Diffstat (limited to 'src/archive.c')
-rw-r--r-- | src/archive.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/archive.c b/src/archive.c index 8c1e798..58d2573 100644 --- a/src/archive.c +++ b/src/archive.c @@ -262,7 +262,8 @@ err: return r; } -int apk_tar_write_entry(struct apk_ostream *os, const struct apk_file_info *ae, char *data) +int apk_tar_write_entry(struct apk_ostream *os, const struct apk_file_info *ae, + const char *data) { struct tar_header buf; |