diff options
Diffstat (limited to 'src/bincimap-updatecache.cc')
-rw-r--r-- | src/bincimap-updatecache.cc | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/bincimap-updatecache.cc b/src/bincimap-updatecache.cc index 4efe723..b89abdf 100644 --- a/src/bincimap-updatecache.cc +++ b/src/bincimap-updatecache.cc @@ -32,9 +32,10 @@ int main(int argc, char *argv[]) Depot *depot; if ((depot = depotfactory.get(depottype)) == 0) { - fprintf(stderr, "Found no Depot for \"%s\". Please check " \ - " your configurations file under the Mailbox section.\n", - depottype.c_str()); + fprintf(stderr, + "Found no Depot for \"%s\". Please check " + " your configurations file under the Mailbox section.\n", + depottype.c_str()); return 1; } @@ -44,14 +45,12 @@ int main(int argc, char *argv[]) Mailbox *mailbox = depot->get(depot->filenameToMailbox(argv[1])); if (!mailbox) { - fprintf(stderr, "selecting mailbox failed: %s\n", - depot->getLastError().c_str()); + fprintf(stderr, "selecting mailbox failed: %s\n", depot->getLastError().c_str()); return 1; } if (!mailbox->selectMailbox(argv[1], argv[1])) { - fprintf(stderr, "selecting mailbox failed: %s\n", - mailbox->getLastError().c_str()); + fprintf(stderr, "selecting mailbox failed: %s\n", mailbox->getLastError().c_str()); return 1; } |