summaryrefslogtreecommitdiff
path: root/source3/lib/tldap_util.c
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2011-04-04 13:46:18 +0200
committerGünther Deschner <gd@samba.org>2011-04-06 13:10:30 +0200
commit3626579cc27cb03fba2100be1a2686651bd3f003 (patch)
treecc103311a0fe8600ed2baa35399ee58020f357ff /source3/lib/tldap_util.c
parent2bafb4ccbb99dfde533acad7bf0162ca2618c716 (diff)
downloadsamba-3626579cc27cb03fba2100be1a2686651bd3f003.tar.gz
samba-3626579cc27cb03fba2100be1a2686651bd3f003.tar.bz2
samba-3626579cc27cb03fba2100be1a2686651bd3f003.zip
s3: Fix tldap_make_mod_blob_int() debug messages
Signed-off-by: Günther Deschner <gd@samba.org> Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Apr 6 13:10:30 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/lib/tldap_util.c')
-rw-r--r--source3/lib/tldap_util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/tldap_util.c b/source3/lib/tldap_util.c
index a908301adf..0c22d6564e 100644
--- a/source3/lib/tldap_util.c
+++ b/source3/lib/tldap_util.c
@@ -236,7 +236,7 @@ static bool tldap_make_mod_blob_int(struct tldap_message *existing,
/* Believe it or not, but LDAP will deny a delete and
an add at the same time if the values are the
same... */
- DEBUG(10,("smbldap_make_mod_blob: attribute |%s| not "
+ DEBUG(10,("tldap_make_mod_blob_int: attribute |%s| not "
"changed.\n", attrib));
return true;
}
@@ -250,7 +250,7 @@ static bool tldap_make_mod_blob_int(struct tldap_message *existing,
* Novell NDS. In NDS you have to first remove attribute and
* then you could add new value */
- DEBUG(10, ("smbldap_make_mod_blob: deleting attribute |%s|\n",
+ DEBUG(10, ("tldap_make_mod_blob_int: deleting attribute |%s|\n",
attrib));
if (!tldap_add_mod_blobs(mem_ctx, pmods, pnum_mods,
TLDAP_MOD_DELETE,
@@ -264,7 +264,7 @@ static bool tldap_make_mod_blob_int(struct tldap_message *existing,
the old value, should it exist. */
if (newval.data != NULL) {
- DEBUG(10, ("smbldap_make_mod: adding attribute |%s| value len "
+ DEBUG(10, ("tldap_make_mod_blob_int: adding attribute |%s| value len "
"%d\n", attrib, (int)newval.length));
if (!tldap_add_mod_blobs(mem_ctx, pmods, pnum_mods,
TLDAP_MOD_ADD,