summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/entries.c
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@cvs.openbsd.org>2007-09-04 19:07:05 +0000
committerTobias Stoeckmann <tobias@cvs.openbsd.org>2007-09-04 19:07:05 +0000
commit2576f1816448a9ac2c0fc40dcca15d4dc48bc823 (patch)
treea952594f2893950ea25b8bb878c9ac84bee89bb6 /usr.bin/cvs/entries.c
parent43e123e44d068b8f22c90342f783ac3653eb173d (diff)
Removed dead code.
OK joris@, ray@
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)
{