summaryrefslogtreecommitdiff
path: root/source4/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-04-11 19:35:15 +1000
committerAndrew Bartlett <abartlet@samba.org>2008-04-11 19:35:15 +1000
commitc82e9c9f6dce7968d807a2b58527a86134026168 (patch)
tree83b62c515092440dcec512bb34eec8581d8fe621 /source4/param
parente44f0e7b75a15e61427a6520999d0d79b78e9d2a (diff)
downloadsamba-c82e9c9f6dce7968d807a2b58527a86134026168.tar.gz
samba-c82e9c9f6dce7968d807a2b58527a86134026168.tar.bz2
samba-c82e9c9f6dce7968d807a2b58527a86134026168.zip
Don't specify the ntds_guid to the C -> python provision interface
This paramter was not used anyway. Andrew Bartlett (This used to be commit 6875e6823f7a1fe9066bff4dffcab658a17d3b8c)
Diffstat (limited to 'source4/param')
-rw-r--r--source4/param/provision.c2
-rw-r--r--source4/param/provision.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/source4/param/provision.c b/source4/param/provision.c
index d9b2dd899d..70ef618b6e 100644
--- a/source4/param/provision.c
+++ b/source4/param/provision.c
@@ -68,10 +68,8 @@ NTSTATUS provision_bare(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx,
settings->site_name));
DEBUG(0,("DSA Instance [%s]\n"
- "\tobjectGUID[%s]\n"
"\tinvocationId[%s]\n",
settings->ntds_dn_str,
- settings->ntds_guid == NULL?"None":GUID_string(mem_ctx, settings->ntds_guid),
settings->invocation_id == NULL?"None":GUID_string(mem_ctx, settings->invocation_id)));
DEBUG(0,("Pathes under targetdir[%s]\n",
diff --git a/source4/param/provision.h b/source4/param/provision.h
index df95549272..af9685d292 100644
--- a/source4/param/provision.h
+++ b/source4/param/provision.h
@@ -32,7 +32,6 @@ struct provision_settings {
const char *host_ip;
const char *realm;
const char *domain;
- const struct GUID *ntds_guid;
const char *ntds_dn_str;
const char *machine_password;
const char *targetdir;