[BACK]Return to auth2-none.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/auth2-none.c between version 1.4 and 1.4.4.1

version 1.4, 2002/06/27 10:35:47 version 1.4.4.1, 2003/09/16 20:50:42
Line 96 
Line 96 
         none_enabled = 0;          none_enabled = 0;
         packet_check_eom();          packet_check_eom();
         userauth_banner();          userauth_banner();
         return (authctxt->valid ? PRIVSEP(auth_password(authctxt, "")) : 0);          if (options.password_authentication)
                   return (PRIVSEP(auth_password(authctxt, "")));
           return (0);
 }  }
   
 Authmethod method_none = {  Authmethod method_none = {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.4.4.1