diff options
author | 2007-09-22 16:01:22 +0000 | |
---|---|---|
committer | 2007-09-22 16:01:22 +0000 | |
commit | 51ef6581db011c72ef873b61a69930f9af0869d2 (patch) | |
tree | 153a6a3cd81f62fa7bf5b2c343a2816dcc02ff56 /usr.bin/cvs/annotate.c | |
parent | we no longer create a 0 sized file in our /tmp/cvs-serv<pid> server (diff) | |
download | wireguard-openbsd-51ef6581db011c72ef873b61a69930f9af0869d2.tar.xz wireguard-openbsd-51ef6581db011c72ef873b61a69930f9af0869d2.zip |
better branching/sticky tag support, no branch commits yet though.
Diffstat (limited to 'usr.bin/cvs/annotate.c')
-rw-r--r-- | usr.bin/cvs/annotate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/annotate.c b/usr.bin/cvs/annotate.c index b112211c596..0d49b3062c2 100644 --- a/usr.bin/cvs/annotate.c +++ b/usr.bin/cvs/annotate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: annotate.c,v 1.38 2007/09/13 13:10:57 tobias Exp $ */ +/* $OpenBSD: annotate.c,v 1.39 2007/09/22 16:01:22 joris Exp $ */ /* * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> * Copyright (c) 2007 Tobias Stoeckmann <tobias@openbsd.org> @@ -120,7 +120,7 @@ cvs_annotate_local(struct cvs_file *cf) cvs_log(LP_TRACE, "cvs_annotate_local(%s)", cf->file_path); - cvs_file_classify(cf, NULL); + cvs_file_classify(cf, cvs_directory_tag); if (cf->file_status == FILE_UNKNOWN || cf->file_status == FILE_UNLINK || cf->file_type != CVS_FILE) |