diff options
-rw-r--r-- | plugins/backup-restore/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/backup-restore/backup.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/backup-restore/ChangeLog b/plugins/backup-restore/ChangeLog index 94e88e2bf2..2abd006846 100644 --- a/plugins/backup-restore/ChangeLog +++ b/plugins/backup-restore/ChangeLog @@ -1,3 +1,9 @@ +2008-07-03 Roger Zauner <roger@eskimo.com> + + ** Fix for bug #540400 + + * backup.c: (backup): Make Evolution Backup follow symbolic links. + 2008-07-01 Milan Crha <mcrha@redhat.com> ** Fix for bug #540274 diff --git a/plugins/backup-restore/backup.c b/plugins/backup-restore/backup.c index 50421ff9bd..947639972b 100644 --- a/plugins/backup-restore/backup.c +++ b/plugins/backup-restore/backup.c @@ -119,7 +119,7 @@ backup (const char *filename) /* FIXME compression type?" */ /* FIXME date/time stamp?" */ /* FIXME backup location?" */ - command = g_strdup_printf ("cd $HOME && tar cf - .evolution .camel_certs | gzip > %s", quotedfname); + command = g_strdup_printf ("cd $HOME && tar chf - .evolution .camel_certs | gzip > %s", quotedfname); s (command); g_free (command); g_free (quotedfname); |