summaryrefslogtreecommitdiff
path: root/source4/kdc/hdb-ldb.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2005-08-18 16:18:48 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:33:33 -0500
commitac90ddfdb28050912ecab0e998089b93216c5c35 (patch)
treecb37f9654b81ec3575466689cd130dd8c92b48fd /source4/kdc/hdb-ldb.c
parent3e4c4cff2177af33efdb15f03a1bbcb639505cee (diff)
downloadsamba-ac90ddfdb28050912ecab0e998089b93216c5c35.tar.gz
samba-ac90ddfdb28050912ecab0e998089b93216c5c35.tar.bz2
samba-ac90ddfdb28050912ecab0e998089b93216c5c35.zip
r9392: Fix ldb_dn_compose to make build farm happy
Add ldb_dn_string_compose so that you can build a dn starting from a struct ldb_dn base and a set of parameters to be composed in a format string with the same syntax of printf (This used to be commit 31c69d0655752cc8ea3bc5b7ea87792291302091)
Diffstat (limited to 'source4/kdc/hdb-ldb.c')
-rw-r--r--source4/kdc/hdb-ldb.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/kdc/hdb-ldb.c b/source4/kdc/hdb-ldb.c
index 78084f2e89..f138373cc3 100644
--- a/source4/kdc/hdb-ldb.c
+++ b/source4/kdc/hdb-ldb.c
@@ -624,10 +624,9 @@ static krb5_error_code LDB_lookup_spn_alias(krb5_context context, struct ldb_con
int count;
struct ldb_message **msg;
struct ldb_message_element *spnmappings;
- struct ldb_dn *service_dn = ldb_dn_compose_string_dn(mem_ctx,
+ struct ldb_dn *service_dn = ldb_dn_string_compose(mem_ctx, realm_dn,
"CN=Directory Service,CN=Windows NT"
- ",CN=Services,CN=Configuration",
- realm_dn);
+ ",CN=Services,CN=Configuration");
char *service_dn_str = ldb_dn_linearize(mem_ctx, service_dn);
const char *directory_attrs[] = {
"sPNMappings",