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

Diff for /src/usr.bin/ssh/auth2-kbdint.c between version 1.13 and 1.14

version 1.13, 2021/07/02 05:11:20 version 1.14, 2021/12/19 22:12:07
Line 42 
Line 42 
 extern ServerOptions options;  extern ServerOptions options;
   
 static int  static int
 userauth_kbdint(struct ssh *ssh)  userauth_kbdint(struct ssh *ssh, const char *method)
 {  {
         int r, authenticated = 0;          int r, authenticated = 0;
         char *lang, *devs;          char *lang, *devs;
Line 64 
Line 64 
   
 Authmethod method_kbdint = {  Authmethod method_kbdint = {
         "keyboard-interactive",          "keyboard-interactive",
           NULL,
         userauth_kbdint,          userauth_kbdint,
         &options.kbd_interactive_authentication          &options.kbd_interactive_authentication
 };  };

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14