From 681106af4f34a1b9ef70f7f6cc51216a5f3f4194 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sat, 18 Sep 2010 20:50:25 +0200 Subject: s4:rootdse LDB module - introduce dynamic "dnsHostName" attribute Signed-off-by: Andrew Bartlett --- source4/dsdb/samdb/ldb_modules/rootdse.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source4/dsdb/samdb') diff --git a/source4/dsdb/samdb/ldb_modules/rootdse.c b/source4/dsdb/samdb/ldb_modules/rootdse.c index 4e9f63c1e7..041e85840e 100644 --- a/source4/dsdb/samdb/ldb_modules/rootdse.c +++ b/source4/dsdb/samdb/ldb_modules/rootdse.c @@ -198,6 +198,14 @@ static int rootdse_add_dynamic(struct ldb_module *module, struct ldb_message *ms } } + if (do_attribute(attrs, "dnsHostName")) { + if (ldb_msg_add_string(msg, "dnsHostName", + samdb_search_string(ldb, msg, samdb_server_dn(ldb, msg), + "dNSHostName", NULL)) != LDB_SUCCESS) { + goto failed; + } + } + if (do_attribute(attrs, "currentTime")) { if (ldb_msg_add_steal_string(msg, "currentTime", ldb_timestring(msg, time(NULL))) != LDB_SUCCESS) { -- cgit