=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/file.c,v retrieving revision 1.123 retrieving revision 1.124 diff -c -r1.123 -r1.124 *** src/usr.bin/cvs/file.c 2005/09/15 22:12:23 1.123 --- src/usr.bin/cvs/file.c 2005/10/07 21:47:32 1.124 *************** *** 1,4 **** ! /* $OpenBSD: file.c,v 1.123 2005/09/15 22:12:23 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: file.c,v 1.124 2005/10/07 21:47:32 reyk Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 53,59 **** struct cvs_ignpat { char ip_pat[MAXNAMLEN]; int ip_flags; ! TAILQ_ENTRY (cvs_ignpat) ip_list; }; --- 53,59 ---- struct cvs_ignpat { char ip_pat[MAXNAMLEN]; int ip_flags; ! TAILQ_ENTRY(cvs_ignpat) ip_list; }; *************** *** 287,293 **** if (((mkdir(path, mode) == -1) && (errno != EEXIST)) || (cvs_mkadmin(path, cfp->cf_root->cr_str, cfp->cf_repo, ! NULL, NULL, 0) < 0)) { cvs_file_free(cfp); return (NULL); } --- 287,293 ---- if (((mkdir(path, mode) == -1) && (errno != EEXIST)) || (cvs_mkadmin(path, cfp->cf_root->cr_str, cfp->cf_repo, ! NULL, NULL, 0) < 0)) { cvs_file_free(cfp); return (NULL); } *************** *** 1314,1320 **** * but does not exist anymore, start complaining. */ if (!(cfp->cf_flags & CVS_FILE_ONDISK) && ! (cfp->cf_cvstat == CVS_FST_ADDED) && (cfp->cf_type != DT_DIR)) cvs_log(LP_WARN, "new-born %s has disappeared", path); --- 1314,1320 ---- * but does not exist anymore, start complaining. */ if (!(cfp->cf_flags & CVS_FILE_ONDISK) && ! (cfp->cf_cvstat == CVS_FST_ADDED) && (cfp->cf_type != DT_DIR)) cvs_log(LP_WARN, "new-born %s has disappeared", path);