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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.251 and 1.252

version 1.251, 2016/12/04 23:54:02 version 1.252, 2017/01/30 00:32:03
Line 926 
Line 926 
         Authctxt *authctxt = ctxt;          Authctxt *authctxt = ctxt;
         char *info, *lang, *password = NULL, *retype = NULL;          char *info, *lang, *password = NULL, *retype = NULL;
         char prompt[150];          char prompt[150];
         const char *host = options.host_key_alias ? options.host_key_alias :          const char *host;
             authctxt->host;  
   
         debug2("input_userauth_passwd_changereq");          debug2("input_userauth_passwd_changereq");
   
         if (authctxt == NULL)          if (authctxt == NULL)
                 fatal("input_userauth_passwd_changereq: "                  fatal("input_userauth_passwd_changereq: "
                     "no authentication context");                      "no authentication context");
           host = options.host_key_alias ? options.host_key_alias : authctxt->host;
   
         info = packet_get_string(NULL);          info = packet_get_string(NULL);
         lang = packet_get_string(NULL);          lang = packet_get_string(NULL);

Legend:
Removed from v.1.251  
changed lines
  Added in v.1.252