summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/config.h
diff options
context:
space:
mode:
authorjoris <joris@openbsd.org>2008-02-03 23:34:41 +0000
committerjoris <joris@openbsd.org>2008-02-03 23:34:41 +0000
commitf748429cedbaaa5ebf99cf46bd07846b2e5c5ece (patch)
tree46e890596009230982723cedbe5bb1e70417bb4b /usr.bin/cvs/config.h
parentbe more strict when checking ignore patterns; (diff)
downloadwireguard-openbsd-f748429cedbaaa5ebf99cf46bd07846b2e5c5ece.tar.xz
wireguard-openbsd-f748429cedbaaa5ebf99cf46bd07846b2e5c5ece.zip
shuffle some stuff around so we dont end up doing the same things
twice in cvs_module_lookup() and checkout_check_directory(); allow single files to be ignored with ! as well;
Diffstat (limited to 'usr.bin/cvs/config.h')
-rw-r--r--usr.bin/cvs/config.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/cvs/config.h b/usr.bin/cvs/config.h
index 19506f3a48a..8d33c4e8a1f 100644
--- a/usr.bin/cvs/config.h
+++ b/usr.bin/cvs/config.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: config.h,v 1.5 2008/02/03 22:50:28 joris Exp $ */
+/* $OpenBSD: config.h,v 1.6 2008/02/03 23:34:41 joris Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -37,8 +37,7 @@ void modules_parse_line(char *);
#define MODULE_RUN_ON_COMMIT 0x08
struct module_checkout {
- char *mc_repo;
- char *mc_wdir;
+ char *mc_name;
int mc_flags;
int mc_canfree;
@@ -48,7 +47,6 @@ struct module_checkout {
struct module_info {
char *mi_name;
- char *mi_repository;
int mi_flags;
struct cvs_flisthead mi_modules;