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

Diff for /src/usr.bin/cvs/import.c between version 1.106 and 1.107

version 1.106, 2016/10/13 20:51:25 version 1.107, 2017/05/28 17:11:34
Line 214 
Line 214 
 }  }
   
 void  void
   cvs_import_ignored(const char *path)
   {
           const char *p;
   
           for (p = path; p[0] == '.' && p[1] == '/';)
                   p += 2;
   
           import_printf("I %s/%s\n", import_repository, p);
   }
   
   void
 cvs_import_local(struct cvs_file *cf)  cvs_import_local(struct cvs_file *cf)
 {  {
         int isnew;          int isnew;

Legend:
Removed from v.1.106  
changed lines
  Added in v.1.107