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

Diff for /src/usr.bin/cvs/remote.c between version 1.1 and 1.2

version 1.1, 2006/07/07 17:37:17 version 1.2, 2006/07/08 00:34:20
Line 192 
Line 192 
                 return;                  return;
         }          }
   
           if (cf->file_ent != NULL) {
                   if (cf->file_ent->ce_type == CVS_ENT_DIR)
                           cf->file_type = CVS_DIR;
                   else
                           cf->file_type = CVS_FILE;
           }
   
         if (cf->fd != -1 && cf->file_ent != NULL) {          if (cf->fd != -1 && cf->file_ent != NULL) {
                 if (fstat(cf->fd, &st) == -1)                  if (fstat(cf->fd, &st) == -1)
                         fatal("cvs_remote_classify_file(%s): %s", cf->file_path,                          fatal("cvs_remote_classify_file(%s): %s", cf->file_path,

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2