search for: _uwin

Displaying 1 result from an estimated 1 matches for "_uwin".

Did you mean: uwin
2002 Jun 07
4
openssh for UWIN
...nformation. =====================cut here================== *** auth-passwd.c.orig Mon Mar 04 20:45:57 2002 --- auth-passwd.c Fri Jun 07 10:37:59 2002 *************** *** 44,49 **** --- 44,52 ---- #include "log.h" #include "servconf.h" #include "auth.h" + #ifdef _UWIN + # include <uwin.h> + #endif #ifdef HAVE_CRYPT_H # include <crypt.h> *************** *** 114,119 **** --- 117,125 ---- /* deny if no user. */ if (pw == NULL) return 0; + #ifdef _UWIN + return(uwin_mktoken(pw->pw_name,password,UWIN_TOKCLOSE)!=0); + #endif #ifnde...