diff options
author | Kai Blin <kai@samba.org> | 2008-02-13 23:35:43 +0100 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2008-02-14 12:32:29 +0100 |
commit | f22598a95c5a42c6453f11e5e95c720e8b61c4fc (patch) | |
tree | 3369c8716ef6535aa9e9115bde53a3fc81fce386 | |
parent | c10e0dee343ba9c4d036f36f40a383db115b7e02 (diff) | |
download | samba-f22598a95c5a42c6453f11e5e95c720e8b61c4fc.tar.gz samba-f22598a95c5a42c6453f11e5e95c720e8b61c4fc.tar.bz2 samba-f22598a95c5a42c6453f11e5e95c720e8b61c4fc.zip |
util_ldb: Add a missing \n to debug string, fix trailing whitespaces.
(This used to be commit b0991cc09b36171c18d2407c9f3153b6f7e8299b)
-rw-r--r-- | source4/lib/util/util_ldb.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/source4/lib/util/util_ldb.c b/source4/lib/util/util_ldb.c index a8719af190..f1b42effd8 100644 --- a/source4/lib/util/util_ldb.c +++ b/source4/lib/util/util_ldb.c @@ -1,21 +1,21 @@ -/* +/* Unix SMB/CIFS implementation. common share info functions Copyright (C) Andrew Tridgell 2004 Copyright (C) Tim Potter 2004 - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -56,7 +56,7 @@ int gendb_search_v(struct ldb_context *ldb, if (ret == LDB_SUCCESS) { talloc_steal(mem_ctx, res->msgs); - DEBUG(6,("gendb_search_v: %s %s -> %d\n", + DEBUG(6,("gendb_search_v: %s %s -> %d\n", basedn?ldb_dn_get_linearized(basedn):"NULL", expr?expr:"NULL", res->count)); @@ -67,7 +67,8 @@ int gendb_search_v(struct ldb_context *ldb, ret = 0; *msgs = NULL; } else { - DEBUG(4,("gendb_search_v: search failed: %s", ldb_errstring(ldb))); + DEBUG(4,("gendb_search_v: search failed: %s\n", + ldb_errstring(ldb))); ret = -1; } @@ -80,7 +81,7 @@ int gendb_search_v(struct ldb_context *ldb, search the LDB for the specified attributes - varargs variant */ int gendb_search(struct ldb_context *ldb, - TALLOC_CTX *mem_ctx, + TALLOC_CTX *mem_ctx, struct ldb_dn *basedn, struct ldb_message ***res, const char * const *attrs, @@ -101,7 +102,7 @@ int gendb_search(struct ldb_context *ldb, */ int gendb_search_dn(struct ldb_context *ldb, - TALLOC_CTX *mem_ctx, + TALLOC_CTX *mem_ctx, struct ldb_dn *dn, struct ldb_message ***res, const char * const *attrs) |