diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-27 11:21:02 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-27 11:21:02 +0800 |
commit | e4afd3f9fb962ea1295a0657ec9f83a427829171 (patch) | |
tree | 85d2cd048f634f344e287b55a8ed48116c21e987 /plugins/backup-restore/backup.c | |
parent | 75a36a295adb64a012521c01724d6b2951986653 (diff) | |
download | gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.gz gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.bz2 gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.lz gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.xz gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.zst gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.zip |
Remove trailing whitespace, again.
Diffstat (limited to 'plugins/backup-restore/backup.c')
-rw-r--r-- | plugins/backup-restore/backup.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/backup-restore/backup.c b/plugins/backup-restore/backup.c index 7e7cc50461..19e9e98bb1 100644 --- a/plugins/backup-restore/backup.c +++ b/plugins/backup-restore/backup.c @@ -11,13 +11,13 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with the program; if not, see <http://www.gnu.org/licenses/> + * License along with the program; if not, see <http://www.gnu.org/licenses/> * * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * */ - + #ifdef HAVE_CONFIG_H #include <config.h> #endif @@ -182,7 +182,7 @@ backup (const char *filename) g_return_if_fail (filename && *filename); quotedfname = g_shell_quote(filename); - + CANCEL (complete); txt = _("Shutting down Evolution"); /* FIXME Will the versioned setting always work? */ @@ -226,10 +226,10 @@ restore (const char *filename) { char *command; char *quotedfname; - + g_return_if_fail (filename && *filename); quotedfname = g_shell_quote(filename); - + /* FIXME Will the versioned setting always work? */ CANCEL (complete); txt = _("Shutting down Evolution"); @@ -281,7 +281,7 @@ check (const char *filename) g_return_if_fail (filename && *filename); quotedfname = g_shell_quote(filename); - + command = g_strdup_printf ("tar ztf %s | grep -e \"^\\.evolution/$\"", quotedfname); result = system (command); g_free (command); @@ -294,7 +294,7 @@ check (const char *filename) result = system (command); g_free (command); g_free (quotedfname); - + g_message ("Second result %d", result); } |