diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-04-18 01:44:29 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-04-18 01:45:45 +0800 |
commit | 8bce26958ff1dddadfeeeba9475239473fc71a94 (patch) | |
tree | abe61844dceb06d5b745f608757e5dc9061e014f /plugins | |
parent | 8e433f20cccb8e0672739476f62d6c46700692df (diff) | |
download | gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.tar.gz gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.tar.zst gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.zip |
Bug 600861 - Backup utility should use --quit instead of --force-shutdown
Diffstat (limited to 'plugins')
-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 9304a135c1..849c9efa14 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"); |