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

Diff for /src/usr.bin/cvs/annotate.c between version 1.2 and 1.3

version 1.2, 2004/12/14 22:30:47 version 1.3, 2004/12/21 18:32:09
Line 150 
Line 150 
         ret = 0;          ret = 0;
         root = CVS_DIR_ROOT(cf);          root = CVS_DIR_ROOT(cf);
   
         if ((root->cr_method != CVS_METHOD_LOCAL) && (cf->cf_type == DT_DIR)) {          if (cf->cf_type == DT_DIR) {
                 if (cf->cf_cvstat == CVS_FST_UNKNOWN)                  if (root->cr_method != CVS_METHOD_LOCAL) {
                         ret = cvs_sendreq(root, CVS_REQ_QUESTIONABLE,                          if (cf->cf_cvstat == CVS_FST_UNKNOWN)
                             CVS_FILE_NAME(cf));                                  ret = cvs_sendreq(root, CVS_REQ_QUESTIONABLE,
                 else                                      CVS_FILE_NAME(cf));
                         ret = cvs_senddir(root, cf);                          else
                                   ret = cvs_senddir(root, cf);
                   }
   
                 return (ret);                  return (ret);
         }          }
   

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