diff options
author | infirit <[email protected]> | 2014-02-13 17:33:38 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-02-13 17:33:38 +0100 |
commit | 0bf2354ffbe9c8fa7189b3373df7d95877978282 (patch) | |
tree | 235b4dd0b8700c1161b072008b585e54796c74dc /src | |
parent | 4cf52a3722472428154559a7102cd8e7e4b05372 (diff) | |
download | engrampa-0bf2354ffbe9c8fa7189b3373df7d95877978282.tar.bz2 engrampa-0bf2354ffbe9c8fa7189b3373df7d95877978282.tar.xz |
Fix zip file extract broken by 45deb61cce3acdf82b466a83013bbd72b30c1df9
Diffstat (limited to 'src')
-rw-r--r-- | src/fr-command-zip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fr-command-zip.c b/src/fr-command-zip.c index 2aa332e..799c161 100644 --- a/src/fr-command-zip.c +++ b/src/fr-command-zip.c @@ -323,8 +323,8 @@ fr_command_zip_extract (FrCommand *comm, fr_process_add_arg (comm->process, "-j"); add_password_arg (comm, comm->password); - fr_process_add_arg (comm->process, comm->filename); fr_process_add_arg (comm->process, "--"); + fr_process_add_arg (comm->process, comm->filename); for (scan = file_list; scan; scan = scan->next) { char *escaped; |