aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-04-18 01:44:29 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-04-18 01:45:45 +0800
commit8bce26958ff1dddadfeeeba9475239473fc71a94 (patch)
treeabe61844dceb06d5b745f608757e5dc9061e014f
parent8e433f20cccb8e0672739476f62d6c46700692df (diff)
downloadgsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.tar
gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.tar.gz
gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.tar.bz2
gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.tar.lz
gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.tar.xz
gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.tar.zst
gsoc2013-evolution-8bce26958ff1dddadfeeeba9475239473fc71a94.zip
Bug 600861 - Backup utility should use --quit instead of --force-shutdown
-rw-r--r--plugins/backup-restore/backup.c4
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");