mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
r23816: A little more static, but leave the dead code testjoin.c as documentation.
Andrew Bartlett
This commit is contained in:
parent
625a9e6c04
commit
6679003c05
@ -118,7 +118,7 @@ void ldapsrv_queue_reply(struct ldapsrv_call *call, struct ldapsrv_reply *reply)
|
|||||||
DLIST_ADD_END(call->replies, reply, struct ldapsrv_reply *);
|
DLIST_ADD_END(call->replies, reply, struct ldapsrv_reply *);
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS ldapsrv_unwilling(struct ldapsrv_call *call, int error)
|
static NTSTATUS ldapsrv_unwilling(struct ldapsrv_call *call, int error)
|
||||||
{
|
{
|
||||||
struct ldapsrv_reply *reply;
|
struct ldapsrv_reply *reply;
|
||||||
struct ldap_ExtendedResponse *r;
|
struct ldap_ExtendedResponse *r;
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
before calling, the out blob must be initialised to be the same size
|
before calling, the out blob must be initialised to be the same size
|
||||||
as the in blob
|
as the in blob
|
||||||
*/
|
*/
|
||||||
void sess_crypt_blob(DATA_BLOB *out, const DATA_BLOB *in, const DATA_BLOB *session_key,
|
static void sess_crypt_blob(DATA_BLOB *out, const DATA_BLOB *in, const DATA_BLOB *session_key,
|
||||||
BOOL forward)
|
BOOL forward)
|
||||||
{
|
{
|
||||||
int i, k;
|
int i, k;
|
||||||
|
@ -420,7 +420,7 @@ struct policy_handle *torture_join_samr_user_policy(struct test_join *join)
|
|||||||
return &join->user_handle;
|
return &join->user_handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS torture_leave_ads_domain(TALLOC_CTX *mem_ctx, struct libnet_JoinDomain *libnet_r)
|
static NTSTATUS torture_leave_ads_domain(TALLOC_CTX *mem_ctx, struct libnet_JoinDomain *libnet_r)
|
||||||
{
|
{
|
||||||
int rtn;
|
int rtn;
|
||||||
TALLOC_CTX *tmp_ctx;
|
TALLOC_CTX *tmp_ctx;
|
||||||
@ -549,6 +549,7 @@ const char *torture_join_dom_dns_name(struct test_join *join)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#if 0 /* Left as the documentation of the join process, but see new implementation in libnet_become_dc.c */
|
||||||
struct test_join_ads_dc {
|
struct test_join_ads_dc {
|
||||||
struct test_join *join;
|
struct test_join *join;
|
||||||
};
|
};
|
||||||
@ -668,14 +669,5 @@ struct test_join_ads_dc *torture_join_domain_ads_dc(const char *machine_name,
|
|||||||
/* W2K3: see libnet/libnet_become_dc.c */
|
/* W2K3: see libnet/libnet_become_dc.c */
|
||||||
return join;
|
return join;
|
||||||
}
|
}
|
||||||
|
|
||||||
void torture_leave_domain_ads_dc(struct test_join_ads_dc *join)
|
|
||||||
{
|
|
||||||
/* W2K3: see libnet/libnet_unbecome_dc.c */
|
|
||||||
|
|
||||||
if (join->join) {
|
#endif
|
||||||
torture_leave_domain(join->join);
|
|
||||||
}
|
|
||||||
|
|
||||||
talloc_free(join);
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user