[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.32 and 1.33

version 1.32, 2005/07/07 14:08:41 version 1.33, 2005/07/07 15:10:17
Line 54 
Line 54 
         "Needs Checkout",          "Needs Checkout",
 };  };
   
   extern int verbosity;
   
   
 static int cvs_status_init      (struct cvs_cmd *, int, char **, int *);  static int cvs_status_init      (struct cvs_cmd *, int, char **, int *);
 static int cvs_status_remote    (CVSFILE *, void *);  static int cvs_status_remote    (CVSFILE *, void *);
 static int cvs_status_local     (CVSFILE *, void *);  static int cvs_status_local     (CVSFILE *, void *);
Line 182 
Line 184 
         RCSFILE *rf;          RCSFILE *rf;
         struct cvsroot *root;          struct cvsroot *root;
   
         if (cf->cf_type == DT_DIR)          if (cf->cf_type == DT_DIR) {
                   if (verbosity > 1)
                           cvs_log(LP_INFO, "Examining %s", cf->cf_name);
                 return (0);                  return (0);
           }
   
         root = CVS_DIR_ROOT(cf);          root = CVS_DIR_ROOT(cf);
         repo = CVS_DIR_REPO(cf);          repo = CVS_DIR_REPO(cf);

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33