[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.26 and 1.27

version 1.26, 2015/11/11 17:42:51 version 1.27, 2019/02/16 15:23:33
Line 432 
Line 432 
          * a relative offset, it's okay to bump things           * a relative offset, it's okay to bump things
          */           */
         if ((sc_tokid == EOF || sc_tokid == PLUS || sc_tokid == NEXT) &&          if ((sc_tokid == EOF || sc_tokid == PLUS || sc_tokid == NEXT) &&
             tm->tm_hour > hour) {              (tm->tm_hour > hour ||
               (tm->tm_hour == hour && tm->tm_min > minute))) {
                 tm->tm_mday++;                  tm->tm_mday++;
                 tm->tm_wday++;                  tm->tm_wday++;
         }          }

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27