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

Diff for /src/usr.bin/ssh/servconf.c between version 1.286 and 1.287

version 1.286, 2016/03/07 19:02:43 version 1.287, 2016/05/02 08:49:03
Line 2007 
Line 2007 
   
         debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));          debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
   
         obuf = cbuf = xstrdup(buffer_ptr(conf));          if ((obuf = cbuf = sshbuf_dup_string(conf)) == NULL)
                   fatal("%s: sshbuf_dup_string failed", __func__);
         active = connectinfo ? 0 : 1;          active = connectinfo ? 0 : 1;
         linenum = 1;          linenum = 1;
         while ((cp = strsep(&cbuf, "\n")) != NULL) {          while ((cp = strsep(&cbuf, "\n")) != NULL) {

Legend:
Removed from v.1.286  
changed lines
  Added in v.1.287