X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/17ccbda62e05f6ed59a27791643be4b94f7fcdbd..42c7f0b4ea09d8971a19beeef743ec8981d4aacc:/src/src/lookups/cdb.c diff --git a/src/src/lookups/cdb.c b/src/src/lookups/cdb.c index 7c738eb7e..13fe8b7d2 100644 --- a/src/src/lookups/cdb.c +++ b/src/src/lookups/cdb.c @@ -210,13 +210,12 @@ cdb_open(uschar *filename, /* Now return the state struct */ return(cdbp); - } else { + } else /* If we got here the map failed. Basically we can ignore * this since we fall back to slower methods.... * However lets debug log it... */ - DEBUG(D_lookup) debug_printf("cdb mmap failed - %d\n", errno); - } + DEBUG(D_lookup) debug_printf_indent("cdb mmap failed - %d\n", errno); #endif /* HAVE_MMAP */ /* In this case we have either not got MMAP allowed, or it failed */ @@ -318,7 +317,7 @@ if ((hash_offset + (hash_offlen * CDB_HASH_ENTRY)) > cdbp->filelen) { *errmsg = string_sprintf("cdb: corrupt cdb file %s (too short)", filename); - DEBUG(D_lookup) debug_printf("%s\n", *errmsg); + DEBUG(D_lookup) debug_printf_indent("%s\n", *errmsg); return DEFER; }