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

Diff for /src/usr.bin/ssh/readconf.c between version 1.148 and 1.149

version 1.148, 2006/02/22 00:04:44 version 1.149, 2006/03/19 02:24:05
Line 323 
Line 323 
   
         s = line;          s = line;
         /* Get the keyword. (Each line is supposed to begin with a keyword). */          /* Get the keyword. (Each line is supposed to begin with a keyword). */
         keyword = strdelim(&s);          if ((keyword = strdelim(&s)) == NULL)
                   return 0;
         /* Ignore leading whitespace. */          /* Ignore leading whitespace. */
         if (*keyword == '\0')          if (*keyword == '\0')
                 keyword = strdelim(&s);                  keyword = strdelim(&s);

Legend:
Removed from v.1.148  
changed lines
  Added in v.1.149