From 3626579cc27cb03fba2100be1a2686651bd3f003 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Mon, 4 Apr 2011 13:46:18 +0200 Subject: [PATCH] s3: Fix tldap_make_mod_blob_int() debug messages MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner Autobuild-User: Günther Deschner Autobuild-Date: Wed Apr 6 13:10:30 CEST 2011 on sn-devel-104 --- source3/lib/tldap_util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/lib/tldap_util.c b/source3/lib/tldap_util.c index a908301adfe..0c22d6564e5 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, -- 2.11.4.GIT