search for: password_check

Displaying 4 results from an estimated 4 matches for "password_check".

2010 Mar 05
2
Bug in driver-mysql.c + fix
...procedures, there are some interesting things that can be done. Two suggestions that I have will help with this: 1) There be variable (say) %o - this be the obscured password, ie what password_query returns. 2) that dovecot look for either ''password_query'' as above, or ''password_check''. password_check would NOT return a password, but would be given %o and determine itself if the password is correct. It would return the other values (user, userdb_home, ...) and auth_result that would encode success/retry/fail (0, 1, 2 - or maybe more structured [**]) and a...
2004 Jan 22
0
Problem compilling SAMBA 3.0.1 under SuSE 9
...(first use in this function) auth/pass_check.c:53: error: (Each undeclared identifier is reported only once auth/pass_check.c:53: error: for each function it appears in.) auth/pass_check.c:53: error: `KA_USERAUTH_DOSETPAG' undeclared (first use in this function) auth/pass_check.c: In function `password_check': auth/pass_check.c:496: warning: passing arg 2 of `afs_auth' discards qualifiers from pointer target type make: *** [auth/pass_check.o] Error 1 Does anyone have any idea of what can be going wrong? Best Regards! -- |...........................................................| |____...
1999 Sep 21
0
FW: Kerberos 5 with Samba, Can you help?
...Sep 16 08:33:40 1999 @@ -800,6 +800,9 @@ /**************************************************************************** core of password checking routine ****************************************************************************/ +#ifdef KRB5_AUTH +extern pstring mappedfrom_user; +#endif BOOL password_check(char *password) { @@ -825,6 +828,7 @@ #endif #ifdef KRB5_AUTH + if (*mappedfrom_user && krb5_auth(mappedfrom_user,password)) return(True); if (krb5_auth(this_user,password)) return(True); #endif --- username.c Mon Sep 13 14:13:11 1999 +++ ../username.c Mon Sep 13 16:03:44 199...
2001 Dec 12
1
MacOS X Server samba diffs
...======================= RCS file: /cvs/repository/iservers/Servers/samba/source/passdb/pass_check.c,v retrieving revision 1.3 retrieving revision 1.1.1.2 diff -u -r1.3 -r1.1.1.2 --- pass_check.c 2001/07/17 06:02:51 1.3 +++ pass_check.c 2001/07/16 22:27:23 1.1.1.2 @@ -598,13 +598,6 @@ static BOOL password_check(char *password) { -#ifdef DIRECTORY_SERVICE_X - if (checkpw(this_user,password) == 0) - return(True); - else - return(False); -#endif - #ifdef WITH_PAM return (smb_pam_passcheck(this_user, password) == NT_STATUS_NOPROBLEMO); #endif /* WITH_PAM */ Index: source/script/...