diff options
author | Luke Leighton <lkcl@samba.org> | 1999-02-08 00:24:57 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-02-08 00:24:57 +0000 |
commit | 6d698d51b324f84b2d2b4c56ea1e728c0c30b220 (patch) | |
tree | e34e22ff61ff463f7d3fd2d5ef94dc2757d5daf0 /source3/include/proto.h | |
parent | ceef08b60e1fc3839df89b27028aa9ac0f920f25 (diff) | |
download | samba-6d698d51b324f84b2d2b4c56ea1e728c0c30b220.tar.gz samba-6d698d51b324f84b2d2b4c56ea1e728c0c30b220.tar.bz2 samba-6d698d51b324f84b2d2b4c56ea1e728c0c30b220.zip |
iteration of sam passwd entries was an order n-cubed algorithm due
to resolution of unix name to nt name being unnecessarily _inside_
another loop.
(This used to be commit d455c9d2c9f60289d78d0331228f5922152070bf)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index bf5f8076fe..301fcbe755 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1449,10 +1449,6 @@ struct passgrp_ops *ldap_initialise_password_grp(void); /*The following definitions come from passdb/sampass.c */ -void *startsamfilepwent(BOOL update); -void endsamfilepwent(void *vp); -SMB_BIG_UINT getsamfilepwpos(void *vp); -BOOL setsamfilepwpos(void *vp, SMB_BIG_UINT tok); struct sam_passdb_ops *file_initialise_sam_password_db(void); /*The following definitions come from passdb/sampassdb.c */ @@ -1481,6 +1477,7 @@ struct sam_passdb_ops *ldap_initialise_sam_password_db(void); /*The following definitions come from passdb/smbpass.c */ +struct smb_passwd *getsmbfilepwent(void *vp); struct smb_passdb_ops *file_initialise_password_db(void); /*The following definitions come from passdb/smbpasschange.c */ |