=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/cvs.h,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/cvs/cvs.h 2004/07/14 04:32:42 1.3 --- src/usr.bin/cvs/cvs.h 2004/07/14 19:03:00 1.4 *************** *** 1,4 **** ! /* $OpenBSD: cvs.h,v 1.3 2004/07/14 04:32:42 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: cvs.h,v 1.4 2004/07/14 19:03:00 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 258,273 **** char *ce_timestamp; char *ce_opts; char *ce_tag; }; typedef struct cvs_entries { char *cef_path; FILE *cef_file; ! u_int cef_nid; /* next entry index to return for next() */ ! ! struct cvs_ent **cef_entries; ! u_int cef_nbent; } CVSENTRIES; --- 258,272 ---- char *ce_timestamp; char *ce_opts; char *ce_tag; + TAILQ_ENTRY(cvs_ent) ce_list; }; typedef struct cvs_entries { char *cef_path; FILE *cef_file; ! TAILQ_HEAD(, cvs_ent) cef_ent; ! struct cvs_ent *cef_cur; } CVSENTRIES;