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

Diff for /src/usr.bin/cvs/status.c between version 1.5 and 1.6

version 1.5, 2004/12/14 22:30:48 version 1.6, 2004/12/21 18:32:10
Line 133 
Line 133 
         root = CVS_DIR_ROOT(cfp);          root = CVS_DIR_ROOT(cfp);
         repo = CVS_DIR_REPO(cfp);          repo = CVS_DIR_REPO(cfp);
   
         if ((root->cr_method != CVS_METHOD_LOCAL) && (cfp->cf_type == DT_DIR))          if (cfp->cf_type == DT_DIR) {
                 return (cvs_senddir(root, cfp));                  if (root->cr_method != CVS_METHOD_LOCAL) {
                           if (cfp->cf_cvstat == CVS_FST_UNKNOWN)
                                   ret = cvs_sendreq(root, CVS_REQ_QUESTIONABLE,
                                       CVS_FILE_NAME(cfp));
                           else
                                   ret = cvs_senddir(root, cfp);
                   }
   
                   return (ret);
           }
   
         cvs_file_getpath(cfp, fpath, sizeof(fpath));          cvs_file_getpath(cfp, fpath, sizeof(fpath));
         entp = cvs_ent_getent(fpath);          entp = cvs_ent_getent(fpath);

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6