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

Diff for /src/usr.bin/cvs/file.c between version 1.134 and 1.135

version 1.134, 2006/01/02 08:11:56 version 1.135, 2006/04/02 02:02:27
Line 34 
Line 34 
   
 #define CVS_CHAR_ISMETA(c)      ((c == '*') || (c == '?') || (c == '['))  #define CVS_CHAR_ISMETA(c)      ((c == '*') || (c == '?') || (c == '['))
   
   
 /* ignore pattern */  /* ignore pattern */
 struct cvs_ignpat {  struct cvs_ignpat {
         char                            ip_pat[MAXNAMLEN];          char                            ip_pat[MAXNAMLEN];
Line 42 
Line 41 
         TAILQ_ENTRY(cvs_ignpat)         ip_list;          TAILQ_ENTRY(cvs_ignpat)         ip_list;
 };  };
   
   
 /*  /*
  * Standard patterns to ignore.   * Standard patterns to ignore.
  */   */
Line 82 
Line 80 
 #endif  #endif
 };  };
   
   
 /*  /*
  * Entries in the CVS/Entries file with a revision of '0' have only been   * Entries in the CVS/Entries file with a revision of '0' have only been
  * added.  Compare against this revision to see if this is the case   * added.  Compare against this revision to see if this is the case
  */   */
 static RCSNUM *cvs_addedrev;  static RCSNUM *cvs_addedrev;
   
   
 TAILQ_HEAD(, cvs_ignpat)        cvs_ign_pats;  TAILQ_HEAD(, cvs_ignpat)        cvs_ign_pats;
   
 static int cvs_file_getdir(CVSFILE *, int, int (*)(CVSFILE *, void *),  static int cvs_file_getdir(CVSFILE *, int, int (*)(CVSFILE *, void *),
Line 103 
Line 99 
 static CVSFILE  *cvs_file_lget(const char *, int, CVSFILE *, CVSENTRIES *,  static CVSFILE  *cvs_file_lget(const char *, int, CVSFILE *, CVSENTRIES *,
                     struct cvs_ent *);                      struct cvs_ent *);
   
   
 /*  /*
  * cvs_file_init()   * cvs_file_init()
  *   *
Line 155 
Line 150 
         return (0);          return (0);
 }  }
   
   
 /*  /*
  * cvs_file_ignore()   * cvs_file_ignore()
  *   *
Line 185 
Line 179 
         return (0);          return (0);
 }  }
   
   
 /*  /*
  * cvs_file_chkign()   * cvs_file_chkign()
  *   *
Line 212 
Line 205 
   
         return (0);          return (0);
 }  }
   
   
 /*  /*
  * cvs_file_create()   * cvs_file_create()

Legend:
Removed from v.1.134  
changed lines
  Added in v.1.135