[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.22 and 1.23

version 1.22, 2018/07/09 21:35:50 version 1.23, 2020/10/18 11:32:01
Line 56 
Line 56 
   
         none_enabled = 0;          none_enabled = 0;
         if ((r = sshpkt_get_end(ssh)) != 0)          if ((r = sshpkt_get_end(ssh)) != 0)
                 fatal("%s: %s", __func__, ssh_err(r));                  fatal_fr(r, "parse packet");
         if (options.permit_empty_passwd && options.password_authentication)          if (options.permit_empty_passwd && options.password_authentication)
                 return (PRIVSEP(auth_password(ssh, "")));                  return (PRIVSEP(auth_password(ssh, "")));
         return (0);          return (0);

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