1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

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
This commit is contained in:
Sumit Bose
2011-04-04 13:46:18 +02:00
committed by Günther Deschner
parent 2bafb4ccbb
commit 3626579cc2

View File

@ -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,