summaryrefslogtreecommitdiffstats
path: root/source/passdb/pass_check.c
Commit message (Collapse)AuthorAgeFilesLines
* Moved code that changes the pw_passwd entry (i.e shadow password andTim Potter1999-06-131-63/+1
| | | | | | | | weird unixware stuff) into _Get_Pwnam() to fix a memory allocation bug. Note that the Get_Pwnam() function now returns a const struct passwd * as a hint to other developers not to change entries in the struct passwd.
* pass_check.c could receive encrypted password: printing it out as a %sLuke Leighton1999-03-081-1/+2
| | | | | results in garbage. with no password length argument doing dump_data( 100, password, strlen(password)) is the next best alternative.
* Added Kerberos4 support patches from Johan Hedin <johanh@fusion.kth.se>Jeremy Allison1998-09-261-1/+3
| | | | Jeremy.
* some cleanups to use ZERO_STRUCT() and friendsAndrew Tridgell1998-09-051-1/+1
|
* got rid of calls to update_protected_database(). It was causing coreAndrew Tridgell1998-08-291-37/+0
| | | | | dumps. It is gone until someone can tell us why its needed and what it does. (It was only used on OSF1 and core dumped there anyway!)
* use user instead of this_user to prevent global shadowingAndrew Tridgell1998-08-151-18/+18
|
* split the system password checking routines out of smbd/password.c andAndrew Tridgell1998-08-101-0/+950
into passdb/pass_check.c. This means SWAT no longer needs to link to smbd/password.c