diff options
author | 2005-01-14 16:57:58 +0000 | |
---|---|---|
committer | 2005-01-14 16:57:58 +0000 | |
commit | 2c24edb1cfc4985c35dab0887904a540f4fe1131 (patch) | |
tree | 7f862608ac0c237d9a6a71e3f513aaaf942b5919 /usr.bin/cvs/entries.c | |
parent | bring back the space before (cmd); ok millert aaron (diff) | |
download | wireguard-openbsd-2c24edb1cfc4985c35dab0887904a540f4fe1131.tar.xz wireguard-openbsd-2c24edb1cfc4985c35dab0887904a540f4fe1131.zip |
stupid me, no need to reinit the queue
pointed by henning@
Diffstat (limited to 'usr.bin/cvs/entries.c')
-rw-r--r-- | usr.bin/cvs/entries.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/cvs/entries.c b/usr.bin/cvs/entries.c index 167ddaf6ff4..350a1d8d8b0 100644 --- a/usr.bin/cvs/entries.c +++ b/usr.bin/cvs/entries.c @@ -1,4 +1,4 @@ -/* $OpenBSD: entries.c,v 1.22 2005/01/14 16:39:21 jfb Exp $ */ +/* $OpenBSD: entries.c,v 1.23 2005/01/14 16:57:58 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -256,9 +256,6 @@ cvs_ent_remove(CVSENTRIES *ef, const char *name) TAILQ_REMOVE(&(ef->cef_ent), ent, ce_list); cvs_ent_free(ent); - if (TAILQ_EMPTY(&(ef->cef_ent))) /* reset */ - TAILQ_INIT(&(ef->cef_ent)); - ef->cef_flags &= ~CVS_ENTF_SYNC; return (0); |