diff --git a/src/filemanager/fileopctx.c b/src/filemanager/fileopctx.c index d29d9e9b1..d92466f7b 100644 --- a/src/filemanager/fileopctx.c +++ b/src/filemanager/fileopctx.c @@ -72,15 +72,12 @@ file_op_context_new (FileOperation op) ctx = g_new0 (file_op_context_t, 1); ctx->operation = op; - ctx->eta_secs = 0.0; - ctx->progress_bytes = 0; ctx->do_reget = -1; ctx->stat_func = mc_lstat; ctx->preserve = TRUE; ctx->preserve_uidgid = (geteuid () == 0); ctx->umask_kill = (mode_t) (~0); ctx->erase_at_end = TRUE; - ctx->ignore_all = FALSE; return ctx; }