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:49:23 +0800 |
commit | 1d0f31207f20f2a8e6a7cd47e152aae20e7303ed (patch) | |
tree | e7fff0d00e21cc533109e865ed5f66765da986e3 | |
parent | f6cc048c91ebe59f8a66133ef82f7207e15e291f (diff) | |
download | gsoc2013-evolution-1d0f31207f20f2a8e6a7cd47e152aae20e7303ed.tar gsoc2013-evolution-1d0f31207f20f2a8e6a7cd47e152aae20e7303ed.tar.gz gsoc2013-evolution-1d0f31207f20f2a8e6a7cd47e152aae20e7303ed.tar.bz2 gsoc2013-evolution-1d0f31207f20f2a8e6a7cd47e152aae20e7303ed.tar.lz gsoc2013-evolution-1d0f31207f20f2a8e6a7cd47e152aae20e7303ed.tar.xz gsoc2013-evolution-1d0f31207f20f2a8e6a7cd47e152aae20e7303ed.tar.zst gsoc2013-evolution-1d0f31207f20f2a8e6a7cd47e152aae20e7303ed.zip |
Bug 600861 - Backup utility should use --quit instead of --force-shutdown
-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"); |