X-Git-Url: http://git.hcoop.net/hcoop/debian/exim4.git/blobdiff_plain/d1d56ac364669b9a323ad9494f96398ba502dac0..50afd7598c8781f66e103d8421d69aed0d69f884:/src/lookups/lmdb.c diff --git a/src/lookups/lmdb.c b/src/lookups/lmdb.c index a6888d5..efaa71f 100644 --- a/src/lookups/lmdb.c +++ b/src/lookups/lmdb.c @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 2016 */ +/* Copyright (c) University of Cambridge 2016 - 2018*/ /* See the file NOTICE for conditions of use and distribution. */ #include "../exim.h" @@ -85,7 +85,7 @@ Lmdbstrct * lmdb_p = handle; dbkey.mv_data = CS keystring; dbkey.mv_size = length; -DEBUG(D_lookup) debug_printf("LMDB: lookup key: %s\n", (char *)keystring); +DEBUG(D_lookup) debug_printf("LMDB: lookup key: %s\n", CS keystring); if ((ret = mdb_get(lmdb_p->txn, lmdb_p->db_dbi, &dbkey, &data)) == 0) {