DEBUG: db functions
authorJeremy Harris <jgh146exb@wizmail.org>
Fri, 31 Aug 2018 21:41:02 +0000 (22:41 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Fri, 31 Aug 2018 21:41:02 +0000 (22:41 +0100)
src/src/dbfn.c

index ec87eaeebe31f2624dfda0f1c6ed62fbcfbecaa1..25c1a3fba9c5fb50f0ed1ad89524e7fb4fc0f816 100644 (file)
@@ -382,6 +382,8 @@ dbfn_delete(open_db *dbblock, const uschar *key)
 int klen = Ustrlen(key) + 1;
 uschar * key_copy = store_get(klen);
 
+DEBUG(D_hints_lookup) debug_printf_indent("dbfn_delete: key=%s\n", key);
+
 memcpy(key_copy, key, klen);
 EXIM_DATUM key_datum;
 EXIM_DATUM_INIT(key_datum);         /* Some DBM libraries require clearing */
@@ -415,6 +417,8 @@ EXIM_DATUM key_datum, value_datum;
 uschar *yield;
 value_datum = value_datum;    /* dummy; not all db libraries use this */
 
+DEBUG(D_hints_lookup) debug_printf_indent("dbfn_scan\n");
+
 /* Some dbm require an initialization */
 
 if (start) EXIM_DBCREATE_CURSOR(dbblock->dbptr, cursor);