diff options
author | Martin Nagy <mnagy@redhat.com> | 2010-03-03 08:33:22 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-03-04 12:41:31 -0500 |
commit | 8f4aaae28c88c707853f8f28d8babc4efe0c1bf6 (patch) | |
tree | 478841789251a1ecefb59e3d8f5dc8fe9f35eb37 /src/db/sysdb_ops.c | |
parent | 70f4c2a1c476804b4fc409923b6fb7b0c2d2aaf4 (diff) | |
download | sssd-8f4aaae28c88c707853f8f28d8babc4efe0c1bf6.tar.gz sssd-8f4aaae28c88c707853f8f28d8babc4efe0c1bf6.tar.xz sssd-8f4aaae28c88c707853f8f28d8babc4efe0c1bf6.zip |
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.
Diffstat (limited to 'src/db/sysdb_ops.c')
-rw-r--r-- | src/db/sysdb_ops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c index 33cfd91f5..618b81086 100644 --- a/src/db/sysdb_ops.c +++ b/src/db/sysdb_ops.c @@ -147,7 +147,7 @@ static int sldb_request_callback(struct ldb_request *ldbreq, int err; if (!ldbreply) { - DEBUG(6, ("Error: Missing ldbreply")); + DEBUG(6, ("Error: Missing ldbreply\n")); ERROR_OUT(err, EIO, fail); } @@ -1314,7 +1314,7 @@ static void sysdb_get_new_id_base(struct tevent_req *subreq) case LDB_REPLY_ENTRY: if (state->base) { DEBUG(1, ("More than one reply for a base search ?! " - "DB seems corrupted, aborting.")); + "DB seems corrupted, aborting.\n")); tevent_req_error(req, EFAULT); return; } |