[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.125 and 1.126

version 1.125, 2015/11/05 09:48:21 version 1.126, 2017/06/01 08:17:27
Line 454 
Line 454 
         struct tm datetm;          struct tm datetm;
         char rev[CVS_REV_BUFSZ], timebuf[CVS_TIME_BUFSZ], sticky[CVS_REV_BUFSZ];          char rev[CVS_REV_BUFSZ], timebuf[CVS_TIME_BUFSZ], sticky[CVS_REV_BUFSZ];
   
         if (cf->file_type != CVS_FILE)  
                 return;  
   
         cvs_client_senddir(cf->file_wd);          cvs_client_senddir(cf->file_wd);
         cvs_remote_classify_file(cf);          cvs_remote_classify_file(cf);
   
         if (cf->file_type == CVS_DIR)          if (cf->file_type != CVS_FILE)
                 return;                  return;
   
         if (cf->file_ent != NULL && cvs_cmdop != CVS_OP_IMPORT) {          if (cf->file_ent != NULL && cvs_cmdop != CVS_OP_IMPORT) {

Legend:
Removed from v.1.125  
changed lines
  Added in v.1.126