diff options
author | infirit <[email protected]> | 2014-11-21 15:42:07 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-22 20:25:29 +0100 |
commit | 4ac9f7cfef1d92f755797e6f5258f2b1dfc20acf (patch) | |
tree | ccac1cee9e8e7fae6cffd09178c6aa4bd100b165 | |
parent | ed78c6d2d8e5ff3b8ae7edd633cce3a266e58d5d (diff) | |
download | engrampa-4ac9f7cfef1d92f755797e6f5258f2b1dfc20acf.tar.bz2 engrampa-4ac9f7cfef1d92f755797e6f5258f2b1dfc20acf.tar.xz |
removed wrong call to fr_process_start
Based on FR commit: 1b1b0e719d39b0edd4fa6a91ade14ca69b9c0222
From: Paolo Bacchilega <[email protected]>
-rw-r--r-- | src/fr-command-cpio.c | 3 | ||||
-rw-r--r-- | src/fr-command-dpkg.c | 2 | ||||
-rw-r--r-- | src/fr-command-iso.c | 2 | ||||
-rw-r--r-- | src/fr-command-rpm.c | 1 |
4 files changed, 1 insertions, 7 deletions
diff --git a/src/fr-command-cpio.c b/src/fr-command-cpio.c index 249192e..fd20cfc 100644 --- a/src/fr-command-cpio.c +++ b/src/fr-command-cpio.c @@ -198,7 +198,7 @@ fr_command_cpio_extract (FrCommand *comm, if (dest_dir != NULL) fr_process_set_working_dir (comm->process, dest_dir); fr_process_add_arg (comm->process, "-c"); - + cmd = g_string_new ("cpio -idu --no-absolute-filenames "); for (scan = file_list; scan; scan = scan->next) { char *filepath = scan->data; @@ -219,7 +219,6 @@ fr_command_cpio_extract (FrCommand *comm, g_string_free (cmd, TRUE); fr_process_end_command (comm->process); - fr_process_start (comm->process); } diff --git a/src/fr-command-dpkg.c b/src/fr-command-dpkg.c index 775c132..7eb0b5a 100644 --- a/src/fr-command-dpkg.c +++ b/src/fr-command-dpkg.c @@ -204,8 +204,6 @@ fr_command_dpkg_extract (FrCommand *comm, fr_process_add_arg (comm->process, "-e"); fr_process_add_arg (comm->process, comm->filename); fr_process_end_command (comm->process); - - fr_process_start (comm->process); } diff --git a/src/fr-command-iso.c b/src/fr-command-iso.c index b589eaf..2470554 100644 --- a/src/fr-command-iso.c +++ b/src/fr-command-iso.c @@ -196,8 +196,6 @@ fr_command_iso_extract (FrCommand *comm, g_free (temp_dest_dir); } - - fr_process_start (comm->process); } diff --git a/src/fr-command-rpm.c b/src/fr-command-rpm.c index 05dff90..b501ad2 100644 --- a/src/fr-command-rpm.c +++ b/src/fr-command-rpm.c @@ -220,7 +220,6 @@ fr_command_rpm_extract (FrCommand *comm, g_string_free (cmd, TRUE); fr_process_end_command (comm->process); - fr_process_start (comm->process); } |