From 39bd4ce92055f79e55e2f228537324d7f1401cc0 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sun, 17 Oct 2010 10:29:46 +0200 Subject: s4:lib/util/util_ldb.c - remove unused "gendb_add_ldif" call --- lib/util/util_ldb.c | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/lib/util/util_ldb.c b/lib/util/util_ldb.c index 5e50fddf1c..738d50052d 100644 --- a/lib/util/util_ldb.c +++ b/lib/util/util_ldb.c @@ -110,20 +110,3 @@ int gendb_search_dn(struct ldb_context *ldb, return gendb_search(ldb, mem_ctx, dn, res, attrs, NULL); } -/* - setup some initial ldif in a ldb -*/ -int gendb_add_ldif(struct ldb_context *ldb, const char *ldif_string) -{ - struct ldb_ldif *ldif; - const char *s = ldif_string; - int ret; - while (s && *s != '\0') { - ldif = ldb_ldif_read_string(ldb, &s); - if (ldif == NULL) return -1; - ret = ldb_add(ldb, ldif->msg); - talloc_free(ldif); - } - return ret; -} - -- cgit