[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.23 and 1.24

version 1.23, 2020/10/18 11:32:01 version 1.24, 2021/12/19 22:12:07
Line 50 
Line 50 
 static int none_enabled = 1;  static int none_enabled = 1;
   
 static int  static int
 userauth_none(struct ssh *ssh)  userauth_none(struct ssh *ssh, const char *method)
 {  {
         int r;          int r;
   
Line 64 
Line 64 
   
 Authmethod method_none = {  Authmethod method_none = {
         "none",          "none",
           NULL,
         userauth_none,          userauth_none,
         &none_enabled          &none_enabled
 };  };

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24