diff options
author | Luke Leighton <lkcl@samba.org> | 1999-03-25 21:32:04 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-03-25 21:32:04 +0000 |
commit | 068e77c86104c5cae2edc4418797e656d617e182 (patch) | |
tree | 7cf362e13c44a7a972314164992c443c3e654ddd /source3/include | |
parent | 754be76bde565cb855877071e4454930bea65aae (diff) | |
download | samba-068e77c86104c5cae2edc4418797e656d617e182.tar.gz samba-068e77c86104c5cae2edc4418797e656d617e182.tar.bz2 samba-068e77c86104c5cae2edc4418797e656d617e182.zip |
"User Manager" - create user + change password now work.
next problem: user group adding not supported so an "access denied"
message is reported instead of "ok" when a new user is created.
(This used to be commit f5f61bd477b4910cb90675c926381342c30a5b16)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index caf53667c8..94d76b9e9f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1516,6 +1516,7 @@ struct sam_passwd *getsam21pwntnam(const char *name); struct sam_passwd *getsam21pwrid(uint32 rid); void pwdb_init_sam(struct sam_passwd *user); struct sam_disp_info *pwdb_sam_to_dispinfo(struct sam_passwd *user); +void copy_id23_to_sam_passwd(struct sam_passwd *to, const SAM_USER_INFO_23 *from); void copy_sam_passwd(struct sam_passwd *to, const struct sam_passwd *from); struct smb_passwd *pwdb_sam_to_smb(struct sam_passwd *user); struct sam_passwd *pwdb_smb_to_sam(struct smb_passwd *user); |