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

Diff for /src/usr.bin/cvs/client.c between version 1.118 and 1.119

version 1.118, 2009/02/21 14:50:53 version 1.119, 2009/02/23 21:28:57
Line 645 
Line 645 
                 if (len >= sizeof(timebuf))                  if (len >= sizeof(timebuf))
                         fatal("cvs_client_sendfile: truncation");                          fatal("cvs_client_sendfile: truncation");
         } else {          } else {
                 ctime_r(&ent->ce_mtime, timebuf);                  gmtime_r(&ent->ce_mtime, &datetm);
                   asctime_r(&datetm, timebuf);
                 timebuf[strcspn(timebuf, "\n")] = '\0';                  timebuf[strcspn(timebuf, "\n")] = '\0';
   
                 if (newent->ce_tag != NULL) {                  if (newent->ce_tag != NULL) {

Legend:
Removed from v.1.118  
changed lines
  Added in v.1.119