aboutsummaryrefslogtreecommitdiff
path: root/src/tar.c
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2020-07-31 17:26:09 +0200
committerJan200101 <sentrycraft123@gmail.com>2020-07-31 17:26:09 +0200
commit1db300d8815b5f997dd6f992e4ca416537018c2f (patch)
tree77cf0330be07b8553bc46f53f0e302a9cb81d561 /src/tar.c
parentaabfdfe3fcbcf718b30872c98568581d7e7e6cca (diff)
downloadpolecat-1db300d8815b5f997dd6f992e4ca416537018c2f.tar.gz
polecat-1db300d8815b5f997dd6f992e4ca416537018c2f.zip
implement running wine from polecat and more0.1.2
- implement running wine from polecat directly and pass all arguments to wine (default wine prefix is still $HOME/.wine) - add command to list installed wine versions (lists all directories, needs to be improved) - rename wine install to wine download - replace deprecated support_compression_all with support_filter_all - comment out DXVK command until its further implemented - use PATH_MAX for strings holding paths
Diffstat (limited to 'src/tar.c')
-rw-r--r--src/tar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tar.c b/src/tar.c
index 3f2983b..b2f4ba5 100644
--- a/src/tar.c
+++ b/src/tar.c
@@ -49,7 +49,7 @@ void extract(const char* filename, const char* outputdir)
a = archive_read_new();
archive_read_support_format_all(a);
- archive_read_support_compression_all(a);
+ archive_read_support_filter_all(a);
ext = archive_write_disk_new();
archive_write_disk_set_options(ext, flags);
archive_write_disk_set_standard_lookup(ext);
@@ -99,4 +99,4 @@ void extract(const char* filename, const char* outputdir)
archive_write_free(ext);
if (cwd != NULL) chdir(cwd);
-} \ No newline at end of file
+}