summaryrefslogtreecommitdiff
path: root/src/fr-command-cpio.c
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-11-21 15:42:07 +0100
committerinfirit <[email protected]>2014-11-22 20:25:29 +0100
commit4ac9f7cfef1d92f755797e6f5258f2b1dfc20acf (patch)
treeccac1cee9e8e7fae6cffd09178c6aa4bd100b165 /src/fr-command-cpio.c
parented78c6d2d8e5ff3b8ae7edd633cce3a266e58d5d (diff)
downloadengrampa-4ac9f7cfef1d92f755797e6f5258f2b1dfc20acf.tar.bz2
engrampa-4ac9f7cfef1d92f755797e6f5258f2b1dfc20acf.tar.xz
removed wrong call to fr_process_start
Based on FR commit: 1b1b0e719d39b0edd4fa6a91ade14ca69b9c0222 From: Paolo Bacchilega <[email protected]>
Diffstat (limited to 'src/fr-command-cpio.c')
-rw-r--r--src/fr-command-cpio.c3
1 files changed, 1 insertions, 2 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);
}