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

Diff for /src/usr.bin/ssh/monitor.c between version 1.208 and 1.209

version 1.208, 2020/02/06 22:30:54 version 1.209, 2020/02/26 13:40:09
Line 789 
Line 789 
         /* Only authenticate if the context is valid */          /* Only authenticate if the context is valid */
         authenticated = options.password_authentication &&          authenticated = options.password_authentication &&
             auth_password(ssh, passwd);              auth_password(ssh, passwd);
         explicit_bzero(passwd, plen);          freezero(passwd, plen);
         free(passwd);  
   
         sshbuf_reset(m);          sshbuf_reset(m);
         if ((r = sshbuf_put_u32(m, authenticated)) != 0)          if ((r = sshbuf_put_u32(m, authenticated)) != 0)

Legend:
Removed from v.1.208  
changed lines
  Added in v.1.209