{
int r;
- r = __archive_read_program(self, "lrunzip");
+ r = __archive_read_programl(self, "lrzip", "lrzip", "-q", "-d", NULL);
/* Note: We set the format here even if __archive_read_program()
* above fails. We do, after all, know what the format is
* even if we weren't able to read it. */
#include "archive_platform.h"
-__FBSDID("$FreeBSD: head/lib/libarchive/archive_write_set_compression_lrzip.c 201081 2009-12-28 02:04:42Z kientzle $");
+__FBSDID("$FreeBSD$");
#ifdef HAVE_ERRNO_H
#include <errno.h>
int
archive_write_add_filter_lrzip(struct archive *a)
{
- return archive_write_add_filter_program(a, "lrzip");
+ return archive_write_add_filter_programl(a, "lrzip", "lrzip",
+ "-q", NULL);
}