s4-lib: Remove unused samdb_msg_set_string()
[ira/wip.git] / source4 / dsdb / common / util.c
index 2647b0025713cf89af575d7c958dde9144494e46..6a26b474099dca399aa3dfedd86cc7e9d1834330 100644 (file)
@@ -999,21 +999,6 @@ int samdb_msg_set_value(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct
        return ldb_msg_add_value(msg, attr_name, val, NULL);
 }
 
-/*
-  set a string element in a message
-*/
-int samdb_msg_set_string(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
-                        const char *attr_name, const char *str)
-{
-       struct ldb_message_element *el;
-
-       el = ldb_msg_find_element(msg, attr_name);
-       if (el) {
-               el->num_values = 0;
-       }
-       return ldb_msg_add_string(msg, attr_name, str);
-}
-
 /*
  * Sets an unsigned int element in a message
  *