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

Diff for /src/usr.bin/cvs/add.c between version 1.95 and 1.96

version 1.95, 2008/03/01 21:29:36 version 1.96, 2008/03/08 20:26:34
Line 27 
Line 27 
   
 extern char *__progname;  extern char *__progname;
   
 void    cvs_add_local(struct cvs_file *);  
 void    cvs_add_entry(struct cvs_file *);  void    cvs_add_entry(struct cvs_file *);
 void    cvs_add_remote(struct cvs_file *);  void    cvs_add_remote(struct cvs_file *);
   
Line 145 
Line 144 
 {  {
         cvs_log(LP_TRACE, "cvs_add_local(%s)", cf->file_path);          cvs_log(LP_TRACE, "cvs_add_local(%s)", cf->file_path);
   
         cvs_file_classify(cf, cvs_directory_tag);          if (cvs_cmdop != CVS_OP_CHECKOUT && cvs_cmdop != CVS_OP_UPDATE)
                   cvs_file_classify(cf, cvs_directory_tag);
   
         /* dont use `cvs add *' */          /* dont use `cvs add *' */
         if (strcmp(cf->file_name, ".") == 0 ||          if (strcmp(cf->file_name, ".") == 0 ||

Legend:
Removed from v.1.95  
changed lines
  Added in v.1.96