diff options
-rw-r--r-- | plugins/backup-restore/backup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/backup-restore/backup.c b/plugins/backup-restore/backup.c index 9f7e70c5b2..dcaaa7e4fe 100644 --- a/plugins/backup-restore/backup.c +++ b/plugins/backup-restore/backup.c @@ -188,7 +188,7 @@ backup (const gchar *filename) CANCEL (complete); txt = _("Shutting down Evolution"); /* FIXME Will the versioned setting always work? */ - run_cmd (EVOLUTION " --force-shutdown"); + run_cmd (EVOLUTION " --quit"); run_cmd ("rm $HOME/.evolution/.running"); @@ -249,7 +249,7 @@ restore (const gchar *filename) /* FIXME Will the versioned setting always work? */ CANCEL (complete); txt = _("Shutting down Evolution"); - run_cmd (EVOLUTION " --force-shutdown"); + run_cmd (EVOLUTION " --quit"); CANCEL (complete); txt = _("Backup current Evolution data"); |