=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/entries.c,v retrieving revision 1.79 retrieving revision 1.80 diff -c -r1.79 -r1.80 *** src/usr.bin/cvs/entries.c 2007/07/03 13:22:42 1.79 --- src/usr.bin/cvs/entries.c 2007/09/04 19:07:04 1.80 *************** *** 1,4 **** ! /* $OpenBSD: entries.c,v 1.79 2007/07/03 13:22:42 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink * --- 1,4 ---- ! /* $OpenBSD: entries.c,v 1.80 2007/09/04 19:07:04 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink * *************** *** 200,217 **** ent = cvs_ent_parse(l->buf); return (ent); - } - - int - cvs_ent_exists(CVSENTRIES *ep, const char *name) - { - struct cvs_ent_line *l; - - l = ent_get_line(ep, name); - if (l == NULL) - return (0); - - return (1); } void --- 200,205 ----