~ubuntu-branches/ubuntu/raring/evolution-data-server/raring-proposed

« back to all changes in this revision

Viewing changes to camel/camel-imapx-store.c

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-11-13 10:12:28 UTC
  • mfrom: (1.1.107)
  • Revision ID: package-import@ubuntu.com-20121113101228-gvueq2vu386p625x
Tags: 3.6.2-0ubuntu1
* New upstream release
* debian/libcamel-1.2-40.symbols::
  - Updated
* debian/patches/dont-abort-in-e_source_registry_new.patch:
  - Applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
336
336
                 * But for the on-disk cache we do always capitalize the Inbox no matter what the
337
337
                 * server provided.
338
338
                 */
339
 
                folder_dir = imapx_path_to_physical (storage_path,
 
339
                folder_dir = imapx_path_to_physical (
 
340
                        storage_path,
340
341
                        g_ascii_strcasecmp (folder_name, "INBOX") == 0 ? "INBOX" : folder_name);
341
342
                g_free (storage_path);
342
343
 
1568
1569
 
1569
1570
        /* So do we care if this didn't work?  Its just a cache? */
1570
1571
        if (g_rename (oldpath, newpath) == -1) {
1571
 
                g_warning ("Could not rename message cache '%s' to '%s': %s: cache reset",
1572
 
                           oldpath, newpath, g_strerror (errno));
 
1572
                g_warning (
 
1573
                        "Could not rename message cache '%s' to '%s': %s: cache reset",
 
1574
                        oldpath, newpath, g_strerror (errno));
1573
1575
        }
1574
1576
 
1575
1577
        g_free (oldpath);