From 8f4aaae28c88c707853f8f28d8babc4efe0c1bf6 Mon Sep 17 00:00:00 2001 From: Martin Nagy Date: Wed, 3 Mar 2010 08:33:22 +0100 Subject: Add forgotten \n in DEBUG statements Logs from confdb with missing '\n' in the DEBUG statements annoyed me so I decided to fix them. I also made a quick grep through the code and found other places so I fixed them too. --- src/responder/nss/nsssrv_nc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/responder/nss/nsssrv_nc.c') diff --git a/src/responder/nss/nsssrv_nc.c b/src/responder/nss/nsssrv_nc.c index 1fa7d612..8d8ef01c 100644 --- a/src/responder/nss/nsssrv_nc.c +++ b/src/responder/nss/nsssrv_nc.c @@ -141,7 +141,7 @@ static int nss_ncache_set_str(struct nss_nc_ctx *ctx, ret = tdb_store(ctx->tdb, key, data, TDB_REPLACE); if (ret != 0) { - DEBUG(1, ("Negative cache failed to set entry: [%s]", + DEBUG(1, ("Negative cache failed to set entry: [%s]\n", tdb_errorstr(ctx->tdb))); ret = EFAULT; } -- cgit