diff options
author | Jean-François Micouleau <jfm@samba.org> | 2000-10-10 13:08:55 +0000 |
---|---|---|
committer | Jean-François Micouleau <jfm@samba.org> | 2000-10-10 13:08:55 +0000 |
commit | 11d999f2bc0c841696bc3ea1ddda48524242482c (patch) | |
tree | d73b35ac9fde76d355a81ecab65ad4c2ef2a4652 /source3/include | |
parent | 2d33e87424197b993e8e7d218c0945cc2b66078a (diff) | |
download | samba-11d999f2bc0c841696bc3ea1ddda48524242482c.tar.gz samba-11d999f2bc0c841696bc3ea1ddda48524242482c.tar.bz2 samba-11d999f2bc0c841696bc3ea1ddda48524242482c.zip |
a netlogon enum trust query doesn't have a function_code at end.
a sam_user_info_24 doesn't have a uint16 at end
samr_create_user also creates the unix account now
samr_set_userinfo changes the password.
J.F.
(This used to be commit 94f4024481fcd0cb6647af1bd4364033be020641)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/include/rpc_netlogon.h | 2 | ||||
-rw-r--r-- | source3/include/rpc_samr_old.h | 2 |
3 files changed, 1 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 985a6efa0d..6911c43be7 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3709,6 +3709,7 @@ int reply_tcon_and_X(connection_struct *conn, char *inbuf,char *outbuf,int lengt int reply_unknown(char *inbuf,char *outbuf); int reply_ioctl(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize); +int smb_create_user(char *unix_user); int reply_sesssetup_and_X(connection_struct *conn, char *inbuf,char *outbuf,int length,int bufsize); int reply_chkpth(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize); int reply_getatr(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize); diff --git a/source3/include/rpc_netlogon.h b/source3/include/rpc_netlogon.h index 0404afd9e5..f5fc45ac52 100644 --- a/source3/include/rpc_netlogon.h +++ b/source3/include/rpc_netlogon.h @@ -208,8 +208,6 @@ typedef struct net_q_trust_dom_info { uint32 ptr; /* undocumented buffer pointer */ UNISTR2 uni_server_name; /* server name, starting with two '\'s */ - - uint32 function_code; /* 0x31 */ } NET_Q_TRUST_DOM_LIST; diff --git a/source3/include/rpc_samr_old.h b/source3/include/rpc_samr_old.h index 656a9de434..17af1befda 100644 --- a/source3/include/rpc_samr_old.h +++ b/source3/include/rpc_samr_old.h @@ -1258,8 +1258,6 @@ typedef struct sam_user_info_23 typedef struct sam_user_info_24 { uint8 pass[516]; - uint16 unk_0; - } SAM_USER_INFO_24; /* SAM_USERINFO_CTR - sam user info */ |