diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-09-22 16:01:23 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-09-22 16:01:23 +0000 |
commit | 0d83276c664f67d2670a75d00571c510830d8d10 (patch) | |
tree | e599820e2290749831ca6f4184f55756f50d74a4 /usr.bin/cvs/file.h | |
parent | a634a04dd7e99d9335ce37798fb7b6335c3495f5 (diff) |
better branching/sticky tag support, no branch commits yet though.
Diffstat (limited to 'usr.bin/cvs/file.h')
-rw-r--r-- | usr.bin/cvs/file.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/cvs/file.h b/usr.bin/cvs/file.h index 498480dcfb3..f3ef3de47d5 100644 --- a/usr.bin/cvs/file.h +++ b/usr.bin/cvs/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.44 2007/06/01 17:47:47 niallo Exp $ */ +/* $OpenBSD: file.h,v 1.45 2007/09/22 16:01:22 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -72,6 +72,7 @@ struct cvs_file { struct cvs_filelist { char *file_path; + int check_dir_tag; TAILQ_ENTRY(cvs_filelist) flist; }; @@ -100,7 +101,7 @@ void cvs_file_run(int, char **, struct cvs_recursion *); void cvs_file_walklist(struct cvs_flisthead *, struct cvs_recursion *); void cvs_file_walkdir(struct cvs_file *, struct cvs_recursion *); void cvs_file_freelist(struct cvs_flisthead *); -struct cvs_filelist *cvs_file_get(const char *, struct cvs_flisthead *); +struct cvs_filelist *cvs_file_get(const char *, int, struct cvs_flisthead *); int cvs_file_chkign(const char *); int cvs_file_cmpname(const char *, const char *); |