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

Diff for /src/usr.bin/at/parsetime.c between version 1.5 and 1.6

version 1.5, 1998/06/26 03:20:11 version 1.6, 1998/07/09 20:40:59
Line 46 
Line 46 
 #include <time.h>  #include <time.h>
 #include <unistd.h>  #include <unistd.h>
 #include <ctype.h>  #include <ctype.h>
   #include <err.h>
   
 /* Local headers */  /* Local headers */
   
Line 344 
Line 345 
                 delay *= 60;                  delay *= 60;
         case MINUTES:          case MINUTES:
                 if (expectplur != sc_tokplur)                  if (expectplur != sc_tokplur)
                         (void)fprintf(stderr, "at: pluralization is wrong\n");                          warnx("pluralization is wrong");
                 dateadd(delay, tm);                  dateadd(delay, tm);
                 return;                  return;
         }          }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6