diff options
author | Luke Leighton <lkcl@samba.org> | 1998-05-19 19:17:35 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-05-19 19:17:35 +0000 |
commit | d906ac5941fa22f93a38d65906b89a80f971b83c (patch) | |
tree | 94edfc60906bb57b4f8f667aff2598c6e1640a15 /source/include/proto.h | |
parent | 0193dd21c3c44e0611add742c6f92b92474de6b8 (diff) | |
download | samba-d906ac5941fa22f93a38d65906b89a80f971b83c.tar.gz samba-d906ac5941fa22f93a38d65906b89a80f971b83c.tar.xz samba-d906ac5941fa22f93a38d65906b89a80f971b83c.zip |
removed "default" system for password database api: all functions must
be supported. there are some stub routines in passdb.c which can be
copied into a password database api which do conversion. the module
writer can choose which of these to provide full support for instead
of using the conversion routines.
Diffstat (limited to 'source/include/proto.h')
-rw-r--r-- | source/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/include/proto.h b/source/include/proto.h index 177a45c9c04..9256520efe2 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -1555,9 +1555,9 @@ BOOL pm_process( char *FileName, /*The following definitions come from passdb.c */ +BOOL initialize_password_db(void); struct smb_passwd *iterate_getsmbpwuid(uid_t smb_userid); struct smb_passwd *iterate_getsmbpwnam(char *name); -BOOL initialize_password_db(void); void *startsmbpwent(BOOL update); void endsmbpwent(void *vp); struct smb_passwd *getsmbpwent(void *vp); @@ -1570,6 +1570,7 @@ struct smb_passwd *getsmbpwuid(uid_t smb_userid); struct sam_passwd *iterate_getsam21pwnam(char *name); struct sam_passwd *iterate_getsam21pwrid(uint32 rid); struct sam_passwd *iterate_getsam21pwuid(uid_t uid); +struct sam_disp_info *getsamdispnam(char *name); struct sam_disp_info *getsamdisprid(uint32 rid); struct sam_disp_info *getsamdispent(void *vp); struct sam_passwd *getsam21pwent(void *vp); |