diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2007-09-04 19:07:05 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2007-09-04 19:07:05 +0000 |
commit | 2576f1816448a9ac2c0fc40dcca15d4dc48bc823 (patch) | |
tree | a952594f2893950ea25b8bb878c9ac84bee89bb6 /usr.bin/cvs/entries.c | |
parent | 43e123e44d068b8f22c90342f783ac3653eb173d (diff) |
Removed dead code.
OK joris@, ray@
Diffstat (limited to 'usr.bin/cvs/entries.c')
-rw-r--r-- | usr.bin/cvs/entries.c | 14 |
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) { |