diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-04-11 19:35:15 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-04-11 19:35:15 +1000 |
commit | c82e9c9f6dce7968d807a2b58527a86134026168 (patch) | |
tree | 83b62c515092440dcec512bb34eec8581d8fe621 /source4/param | |
parent | e44f0e7b75a15e61427a6520999d0d79b78e9d2a (diff) | |
download | samba-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.c | 2 | ||||
-rw-r--r-- | source4/param/provision.h | 1 |
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; |