mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
added #ifdef NTDOMAIN. added call to api_ntLsarpc instead of api_Lsarpc
in ipc.c iff NTDOMAIN is defined.
(This used to be commit 7bc4c4c27b
)
This commit is contained in:
parent
7d82c240e2
commit
3dd03e4bb7
@ -629,6 +629,10 @@ BOOL api_LsarpcTNP(int cnum,int uid, char *param,char *data,
|
||||
char **rdata,char **rparam,
|
||||
int *rdata_len,int *rparam_len);
|
||||
char *dom_sid_to_string(DOM_SID *sid);
|
||||
BOOL api_ntlsarpcTNP(int cnum,int uid, char *param,char *data,
|
||||
int mdrcnt,int mprcnt,
|
||||
char **rdata,char **rparam,
|
||||
int *rdata_len,int *rparam_len);
|
||||
|
||||
/*The following definitions come from predict.c */
|
||||
|
||||
|
@ -2763,7 +2763,11 @@ struct
|
||||
} api_fd_commands [] =
|
||||
{
|
||||
{ "SetNmdPpHndState", "lsarpc", 1, api_LsarpcSNPHS },
|
||||
#ifdef NTDOMAIN
|
||||
{ "TransactNmPipe", "lsarpc", 0x26, api_ntLsarpcTNP },
|
||||
#else
|
||||
{ "TransactNmPipe", "lsarpc", 0x26, api_LsarpcTNP },
|
||||
#endif
|
||||
{ NULL, NULL, -1, (BOOL (*)())api_Unsupported }
|
||||
};
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user