Skip to content

Commit

Permalink
Merge pull request #8 from gapan/master
Browse files Browse the repository at this point in the history
Update for newer version of brotli
  • Loading branch information
gapan authored Aug 2, 2019
2 parents c3eb809 + b9d5ed1 commit 29927c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/untgz.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ struct untgz_state* untgz_open(const gchar* tgzfile, struct error* e)
else if (comptype == COMPTYPE_BRO)
{
gchar* escaped = g_shell_quote(tgzfile);
gchar* cmd = g_strdup_printf("bro --decompress --input %s", escaped);
gchar* cmd = g_strdup_printf("brotli -c --decompress %s", escaped);
fp = popen(cmd, "r");
g_free(escaped);
if (fp == NULL)
Expand Down

0 comments on commit 29927c5

Please sign in to comment.