diff options
-rw-r--r-- | source3/lib/tldap_util.c | 6 |
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, |