summaryrefslogtreecommitdiffstats
path: root/usr.bin/ar
diff options
context:
space:
mode:
authormm <mm@FreeBSD.org>2012-02-25 10:58:02 +0000
committermm <mm@FreeBSD.org>2012-02-25 10:58:02 +0000
commit6132589d7bb05bbf0c9033cc9f5cf79bafdc0b0f (patch)
tree117e869a99c6fa7f789c6d9a87cf7eac26ae69e3 /usr.bin/ar
parent87f7f0cfe8d3d17bc154ca2c0dcd51bca1444006 (diff)
parent2f6e434fe4c652da1969314fa57ae21936cec85d (diff)
downloadFreeBSD-src-6132589d7bb05bbf0c9033cc9f5cf79bafdc0b0f.zip
FreeBSD-src-6132589d7bb05bbf0c9033cc9f5cf79bafdc0b0f.tar.gz
Update libarchive to 3.0.3
Some of new features: - New readers: RAR, LHA/LZH, CAB reader, 7-Zip - New writers: ISO9660, XAR - Improvements to many formats, especially including ISO9660 and Zip - Stackable write filters to write, e.g., tar.gz.uu in a single pass - Exploit seekable input; new "seekable" Zip reader can exploit the Zip Central Directory when it's available; the old "streamable" Zip reader is still fully supported for cases where seeking is not possible. Full release notes available at: https://github.com/libarchive/libarchive/wiki/ReleaseNotes
Diffstat (limited to 'usr.bin/ar')
-rw-r--r--usr.bin/ar/ar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ar/ar.c b/usr.bin/ar/ar.c
index 4b1b7a0..7c76290 100644
--- a/usr.bin/ar/ar.c
+++ b/usr.bin/ar/ar.c
@@ -386,13 +386,13 @@ ranlib_usage(void)
static void
bsdar_version(void)
{
- (void)printf("BSD ar %s - %s\n", BSDAR_VERSION, archive_version());
+ (void)printf("BSD ar %s - %s\n", BSDAR_VERSION, archive_version_string());
exit(EX_OK);
}
static void
ranlib_version(void)
{
- (void)printf("ranlib %s - %s\n", BSDAR_VERSION, archive_version());
+ (void)printf("ranlib %s - %s\n", BSDAR_VERSION, archive_version_string());
exit(EX_OK);
}
OpenPOWER on IntegriCloud