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

Diff for /src/usr.bin/rcs/rcsdiff.c between version 1.61 and 1.62

version 1.61, 2006/05/05 15:47:36 version 1.62, 2006/05/08 09:48:12
Line 63 
Line 63 
                         if (RCS_KWEXP_INVAL(kflag)) {                          if (RCS_KWEXP_INVAL(kflag)) {
                                 warnx("invalid RCS keyword substitution mode");                                  warnx("invalid RCS keyword substitution mode");
                                 (usage)();                                  (usage)();
                                 exit(1);                                  exit(D_ERROR);
                         }                          }
                         break;                          break;
                 case 'n':                  case 'n':
Line 102 
Line 102 
                         break;                          break;
                 default:                  default:
                         (usage)();                          (usage)();
                         exit (1);                          exit (D_ERROR);
                 }                  }
         }          }
   
Line 112 
Line 112 
         if (argc == 0) {          if (argc == 0) {
                 warnx("no input file");                  warnx("no input file");
                 (usage)();                  (usage)();
                 exit(1);                  exit(D_ERROR);
         }          }
   
         for (i = 0; i < argc; i++) {          for (i = 0; i < argc; i++) {

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62