1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r26529: Indeed, this belongs in the schema module. Ranged results need to use

an attribute with ';' in the name.

Andrew Bartlett
(This used to be commit f4023b176eabfb3282fe9b999eac8db55a095ab0)
This commit is contained in:
Andrew Bartlett 2007-12-19 00:39:27 +01:00 committed by Stefan Metzmacher
parent 1cd5cc6e65
commit 131c40a421

View File

@ -124,11 +124,6 @@ int ldb_msg_add_empty( struct ldb_message *msg,
{
struct ldb_message_element *els;
/* FIXME: we should probably leave this to the schema module to check */
if (! ldb_valid_attr_name(attr_name)) {
return LDB_ERR_OPERATIONS_ERROR;
}
els = talloc_realloc(msg, msg->elements,
struct ldb_message_element, msg->num_elements+1);
if (!els) {