[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.263 and 1.264

version 1.263, 2015/04/23 04:59:10 version 1.264, 2015/04/24 01:36:00
Line 1396 
Line 1396 
                 len = strlen(p) + 1;                  len = strlen(p) + 1;
                 while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {                  while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
                         len += 1 + strlen(arg);                          len += 1 + strlen(arg);
                         p = xrealloc(p, 1, len);                          p = xreallocarray(p, 1, len);
                         strlcat(p, " ", len);                          strlcat(p, " ", len);
                         strlcat(p, arg, len);                          strlcat(p, arg, len);
                 }                  }

Legend:
Removed from v.1.263  
changed lines
  Added in v.1.264