=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/file.c,v retrieving revision 1.134 retrieving revision 1.135 diff -c -r1.134 -r1.135 *** src/usr.bin/cvs/file.c 2006/01/02 08:11:56 1.134 --- src/usr.bin/cvs/file.c 2006/04/02 02:02:27 1.135 *************** *** 1,4 **** ! /* $OpenBSD: file.c,v 1.134 2006/01/02 08:11:56 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: file.c,v 1.135 2006/04/02 02:02:27 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 34,40 **** #define CVS_CHAR_ISMETA(c) ((c == '*') || (c == '?') || (c == '[')) - /* ignore pattern */ struct cvs_ignpat { char ip_pat[MAXNAMLEN]; --- 34,39 ---- *************** *** 42,48 **** TAILQ_ENTRY(cvs_ignpat) ip_list; }; - /* * Standard patterns to ignore. */ --- 41,46 ---- *************** *** 82,95 **** #endif }; - /* * 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 */ static RCSNUM *cvs_addedrev; - TAILQ_HEAD(, cvs_ignpat) cvs_ign_pats; static int cvs_file_getdir(CVSFILE *, int, int (*)(CVSFILE *, void *), --- 80,91 ---- *************** *** 103,109 **** static CVSFILE *cvs_file_lget(const char *, int, CVSFILE *, CVSENTRIES *, struct cvs_ent *); - /* * cvs_file_init() * --- 99,104 ---- *************** *** 155,161 **** return (0); } - /* * cvs_file_ignore() * --- 150,155 ---- *************** *** 185,191 **** return (0); } - /* * cvs_file_chkign() * --- 179,184 ---- *************** *** 212,218 **** return (0); } - /* * cvs_file_create() --- 205,210 ----