[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.302 and 1.303

version 1.302, 2017/01/06 03:45:41 version 1.303, 2017/02/03 05:05:56
Line 920 
Line 920 
         long long val64;          long long val64;
         const struct multistate *multistate_ptr;          const struct multistate *multistate_ptr;
   
           /* Strip trailing whitespace. Allow \f (form feed) at EOL only */
           if ((len = strlen(line)) == 0)
                   return 0;
           for (len--; len > 0; len--) {
                   if (strchr(WHITESPACE "\f", line[len]) == NULL)
                           break;
                   line[len] = '\0';
           }
   
         cp = line;          cp = line;
         if ((arg = strdelim(&cp)) == NULL)          if ((arg = strdelim(&cp)) == NULL)
                 return 0;                  return 0;

Legend:
Removed from v.1.302  
changed lines
  Added in v.1.303