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

Diff for /src/usr.bin/cvs/checkout.c between version 1.137 and 1.138

version 1.137, 2008/02/10 13:01:08 version 1.138, 2008/02/10 14:08:52
Line 497 
Line 497 
                 if (tag != NULL)                  if (tag != NULL)
                         (void)xsnprintf(sticky, sizeof(sticky), "T%s", tag);                          (void)xsnprintf(sticky, sizeof(sticky), "T%s", tag);
                 else if (cvs_specified_date != -1) {                  else if (cvs_specified_date != -1) {
                         datetm = gmtime(&cvs_specified_date);                          datetm = gmtime(&cvs_specified_date);
                         strftime(sticky, sizeof(sticky), "D%Y.%m.%d.%H.%M.%S",                          (void)strftime(sticky, sizeof(sticky),
                             datetm);                              "D"CVS_DATE_FMT, datetm);
                 } else                  } else
                         (void)xsnprintf(sticky, sizeof(sticky), "T%s", rev);                          (void)xsnprintf(sticky, sizeof(sticky), "T%s", rev);
         else if (!reset_tag && cf->file_ent != NULL &&          else if (!reset_tag && cf->file_ent != NULL &&

Legend:
Removed from v.1.137  
changed lines
  Added in v.1.138