[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.334 and 1.335

version 1.334, 2020/08/11 09:49:57 version 1.335, 2020/08/27 02:11:09
Line 1818 
Line 1818 
                 }                  }
                 break;                  break;
   
                 arg = strdelim(&s);  
                 if (!arg || *arg == '\0')  
                         fatal("%s line %d: missing time value.",  
                             filename, linenum);  
                 if (strcmp(arg, "none") == 0)  
                         value = -1;  
                 else if ((value = convtime(arg)) == -1 || value > INT_MAX)  
                         fatal("%s line %d: invalid time value.",  
                             filename, linenum);  
                 if (*activep && *intptr == -1)  
                         *intptr = value;  
   
         case oIdentityAgent:          case oIdentityAgent:
                 charptr = &options->identity_agent;                  charptr = &options->identity_agent;
                 arg = strdelim(&s);                  arg = strdelim(&s);

Legend:
Removed from v.1.334  
changed lines
  Added in v.1.335