From d45f5cf6b055f72ad30d5ae2b2fd7f42dbab1ed2 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Wed, 8 Dec 1999 23:03:42 +0000 Subject: jerry spotted that get_domain_sids() was being called with the wrong arguments: get_any_dc_name() was being called with a server name not a domain name. oops. (This used to be commit 631814302d6992138cfe024ba7bd456cc7e0d3bf) --- source3/include/proto.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include') diff --git a/source3/include/proto.h b/source3/include/proto.h index 5cc40b929c..a18b498ba5 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1037,6 +1037,7 @@ void exit_server(char *reason); BOOL receive_next_smb(char *inbuf, int bufsize, int timeout); void process_smb(char *inbuf, char *outbuf); +BOOL get_user_creds(struct user_creds *usr); void lsarpcd_process(void); /*The following definitions come from mem_man/mem_man.c */ @@ -1944,8 +1945,7 @@ BOOL net_sam_sync(const char* srv_name, const char* myhostname, /*The following definitions come from rpc_client/cli_lsarpc.c */ -BOOL get_domain_sids(const char *myname, - DOM_SID *sid3, DOM_SID *sid5, char *domain); +BOOL get_domain_sids(const char *domain, DOM_SID *sid3, DOM_SID *sid5); BOOL get_trust_sid_and_domain(const char* myname, char *server, DOM_SID *sid, char *domain, size_t len); -- cgit