s4-lib: Remove unused samdb_msg_set_value()
[nivanova/samba-autobuild/.git] / source4 / dsdb / common / util.c
index 6a26b474099dca399aa3dfedd86cc7e9d1834330..72321217ea260316a2b958be11411809a816b972 100644 (file)
@@ -984,21 +984,6 @@ int samdb_msg_add_parameters(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, s
        return ldb_msg_add_value(msg, attr_name, &val, NULL);
 }
 
-/*
-  sets a general value element to a message
-*/
-int samdb_msg_set_value(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
-                       const char *attr_name, const struct ldb_val *val)
-{
-       struct ldb_message_element *el;
-
-       el = ldb_msg_find_element(msg, attr_name);
-       if (el) {
-               el->num_values = 0;
-       }
-       return ldb_msg_add_value(msg, attr_name, val, NULL);
-}
-
 /*
  * Sets an unsigned int element in a message
  *