diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-03 16:59:12 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-03 16:59:12 +0000 |
commit | c5bee9b77e859fa642c97be06613bd046d890c7f (patch) | |
tree | 65b7e62f4930caa396644f602714a209b40833d7 /usr.bin/cvs/rcs.c | |
parent | f59a8e323d46c73a65b0846179698e44b7ea8bc2 (diff) |
Do not unify this "-fr UNKNOWN" handling, it breaks commands which have
to work fine and just ignore files which don't have requested symbol.
Spotted by joris@.
Diffstat (limited to 'usr.bin/cvs/rcs.c')
-rw-r--r-- | usr.bin/cvs/rcs.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/usr.bin/cvs/rcs.c b/usr.bin/cvs/rcs.c index d10d0e68561..fab8c63ad5b 100644 --- a/usr.bin/cvs/rcs.c +++ b/usr.bin/cvs/rcs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.c,v 1.244 2008/02/02 16:59:48 tobias Exp $ */ +/* $OpenBSD: rcs.c,v 1.245 2008/02/03 16:59:11 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -2657,14 +2657,8 @@ rcs_translate_tag(const char *revstr, RCSFILE *rfp) rev = rcs_sym_getrev(rfp, revstr); } - /* - * Although many cvs commands do have option -f to force head - * if a revision is not found, GNU cvs simply fatals with - * unknown symbols. If we reach this point rev is still NULL, - * do the same... - */ if (rev == NULL) - fatal("no such tag %s", revstr); + return (NULL); /* * If it was not a branch, thats ok the symbolic |