summaryrefslogtreecommitdiffstats
path: root/source/pam_smbpass
Commit message (Collapse)AuthorAgeFilesLines
* Ignore *.poTim Potter2003-07-111-0/+1
|
* Found out a good number of NT_STATUS_IS_ERR used the wrong way.Simo Sorce2003-06-222-2/+2
| | | | | | | | | | | As abartlet rememberd me NT_STATUS_IS_ERR != !NT_STATUS_IS_OK This patch will cure the problem. Working on this one I found 16 functions where I think NT_STATUS_IS_ERR() is used correctly, but I'm not 100% sure, coders should check the use of NT_STATUS_IS_ERR() in samba is ok now. Simo.
* And finally IDMAP in 3_0Simo Sorce2003-05-122-29/+34
| | | | | | | | | | | | | | | | | | | | We really need idmap_ldap to have a good solution with ldapsam, porting it from the prvious code is beeing made, the code is really simple to do so I am confident it is not a problem to commit this code in. Not committing it would have been worst. I really would have been able to finish also the group code, maybe we can put it into a followin release after 3.0.0 even if it may be an upgrade problem. The code has been tested and seem to work right, more testing is needed for corner cases. Currently winbind pdc (working only for users and not for groups) is disabled as I was not able to make a complete group code replacement that works somewhat in a week (I have a complete patch, but there are bugs) Simo.
* Patch from VorlonJohn Terpstra2003-04-261-7/+1
|
* Patch from Steve Langasek <vorlon@netexpress.net>John Terpstra2003-04-083-58/+85
| | | | | | | | | | | | | | | fix up two issues in pam_smbpass. The first, more important issue is adding support for the (apparently new) LOCAL_SET_PASSWORD flag to local_password_change(), without which pam_smbpass is a complete and utter no-op. The second, lesser issue is that with the advent of ldapsam, it's possible for pam_smbpass to generate a SIGPIPE that isn't handled by the calling application. The most basic signal wrapping is put in place to prevent this. Beyond that, the only thing in the patch is a bit of reformatting to make pam_smb_passwd.c look a bit more like the rest of the code in CVS. More of that later, I'm sure.
* Merge from HEAD - remove silly 'NT or LM# as password' stuff from pam_smbpass.Andrew Bartlett2003-01-031-19/+0
| | | | Andrew Bartlett
* sync'ing up for 3.0alpha20 releaseGerald Carter2002-09-251-3/+6
|
* updated the 3.0 branch from the head branch - ready for alpha18Andrew Tridgell2002-07-155-118/+128
|
* This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.cvs2svn Import User2002-07-141-0/+64
|\
| * compile fixes; needs testingGerald Carter2002-05-096-118/+192
|/
* updates from 2.2Simo Sorce2002-01-126-95/+141
|
* pam_smbpass updates from a.bokovoy@sam-solutions.netAndrew Tridgell2001-12-114-31/+4
|
* Store some path names in global variables initialized to configureMartin Pool2001-11-191-1/+1
| | | | default, rather than in preprocessor macros.
* Fix up smbpasswd -e/-d so that it doesn't change the password under you anyAndrew Bartlett2001-10-302-3/+3
| | | | | | | | | | | | | more. (Previously it set them to 'XXXX' or similar when only the flags were being changed - a bug I must have introduced when I reworked the passdb end of things a few weeks back.) Adds a new local flag: LOCAL_SET_PASSWORD to specify that the password is actually to be changed. Andrew Bartlett
* samba-bugs@samba.org -> samba@samba.orgAndrew Bartlett2001-10-261-1/+1
| | | | The rest of this is still broken however...
* Renamed inbuilt xstrdup to smb_xstrdup.Jeremy Allison2001-10-221-5/+5
| | | | Jeremy.
* add a comment to make the code more readableSimo Sorce2001-08-241-1/+1
|
* The big character set handling changeover!Andrew Tridgell2001-07-043-3/+0
| | | | | | | This commit gets rid of all our old codepage handling and replaces it with iconv. All internal strings in Samba are now in "unix" charset, which may be multi-byte. See internals.doc and my posting to samba-technical for a more complete explanation.
* Added Steve Langasek <vorlon@netexpress.net> pam_smbpass PAM module code.John Terpstra2001-04-2414-0/+1668
Note: Still have to add build stuff - not ready yet.