1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r2722: remove tmp debug messages

metze
This commit is contained in:
Stefan Metzmacher 2004-09-28 12:17:03 +00:00 committed by Gerald (Jerry) Carter
parent fd2725f5c0
commit 60dcba3e91

View File

@ -379,15 +379,12 @@ static NTSTATUS sldb_Modify(struct ldapsrv_partition *partition, struct ldapsrv_
result = 2;
goto invalid_input;
case LDAP_MODIFY_ADD:
DEBUG(0,("mod_add: %s\n",msg->elements[i].name));
msg->elements[i].flags = LDB_FLAG_MOD_ADD;
break;
case LDAP_MODIFY_DELETE:
DEBUG(0,("mod_del: %s\n",msg->elements[i].name));
msg->elements[i].flags = LDB_FLAG_MOD_DELETE;
break;
case LDAP_MODIFY_REPLACE:
DEBUG(0,("mod_replace: %s\n",msg->elements[i].name));
msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
break;
}
@ -441,7 +438,7 @@ invalid_input:
} else {
errstr = talloc_strdup(modify_reply,"invalid input data");
}
DEBUG(0,("mod result: %d, %s\n",result, errstr));
modify_result->resultcode = result;
modify_result->errormessage = errstr;
modify_result->referral = NULL;