diff options
| author | 2008-02-03 23:34:41 +0000 | |
|---|---|---|
| committer | 2008-02-03 23:34:41 +0000 | |
| commit | f748429cedbaaa5ebf99cf46bd07846b2e5c5ece (patch) | |
| tree | 46e890596009230982723cedbe5bb1e70417bb4b /usr.bin/cvs/config.h | |
| parent | be more strict when checking ignore patterns; (diff) | |
| download | wireguard-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.h | 6 |
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; |
