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

Diff for /src/usr.bin/cvs/rcs.c between version 1.278 and 1.279

version 1.278, 2008/06/26 21:31:40 version 1.279, 2008/09/12 13:11:15
Line 2608 
Line 2608 
 int  int
 rcs_state_check(const char *state)  rcs_state_check(const char *state)
 {  {
         if (strchr(state, ' ') != NULL)          if (strcmp(state, RCS_STATE_DEAD) && strcmp(state, RCS_STATE_EXP))
                 return (-1);                  return (-1);
   
         return (0);          return (0);

Legend:
Removed from v.1.278  
changed lines
  Added in v.1.279