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

Diff for /src/usr.bin/ssh/auth2.c between version 1.155 and 1.156

version 1.155, 2019/03/25 22:34:52 version 1.156, 2019/06/28 05:44:09
Line 668 
Line 668 
         i = vasprintf(&authctxt->auth_method_info, fmt, ap);          i = vasprintf(&authctxt->auth_method_info, fmt, ap);
         va_end(ap);          va_end(ap);
   
         if (i < 0 || authctxt->auth_method_info == NULL)          if (i == -1)
                 fatal("%s: vasprintf failed", __func__);                  fatal("%s: vasprintf failed", __func__);
 }  }
   

Legend:
Removed from v.1.155  
changed lines
  Added in v.1.156