[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.135 and 1.136

version 1.135, 2015/01/19 20:07:45 version 1.136, 2016/05/02 08:49:03
Line 373 
Line 373 
                 buffer_append(&b, authmethods[i]->name,                  buffer_append(&b, authmethods[i]->name,
                     strlen(authmethods[i]->name));                      strlen(authmethods[i]->name));
         }          }
         buffer_append(&b, "\0", 1);          if ((list = sshbuf_dup_string(&b)) == NULL)
         list = xstrdup(buffer_ptr(&b));                  fatal("%s: sshbuf_dup_string failed", __func__);
         buffer_free(&b);          buffer_free(&b);
         return list;          return list;
 }  }

Legend:
Removed from v.1.135  
changed lines
  Added in v.1.136