summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/entries.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/cvs/entries.c')
-rw-r--r--usr.bin/cvs/entries.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/usr.bin/cvs/entries.c b/usr.bin/cvs/entries.c
index d13a3258c15..12b8bf92365 100644
--- a/usr.bin/cvs/entries.c
+++ b/usr.bin/cvs/entries.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: entries.c,v 1.79 2007/07/03 13:22:42 joris Exp $ */
+/* $OpenBSD: entries.c,v 1.80 2007/09/04 19:07:04 tobias Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -202,18 +202,6 @@ cvs_ent_get(CVSENTRIES *ep, const char *name)
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
cvs_ent_close(CVSENTRIES *ep, int writefile)
{