diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2008-02-06 22:43:23 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2008-02-06 22:43:23 +0000 |
commit | 5987f4c0e04b77872af29b81bec3ae30e5b1851d (patch) | |
tree | 88e627c83dbd25190566ab9ab5bc35a124188959 /usr.bin/cvs/config.h | |
parent | 908605974533a03d6043e25f976de20e941de59b (diff) |
lets do co -c as well (list available modules) and do it in 1/6th of the
lines GNU cvs does it in, without actually fucking up on bad lines,
like gnucvs.
ok tobias@
Diffstat (limited to 'usr.bin/cvs/config.h')
-rw-r--r-- | usr.bin/cvs/config.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/cvs/config.h b/usr.bin/cvs/config.h index 6946ef3b7a5..e4e48d9e714 100644 --- a/usr.bin/cvs/config.h +++ b/usr.bin/cvs/config.h @@ -1,4 +1,4 @@ -/* $OpenBSD: config.h,v 1.8 2008/02/04 22:36:40 joris Exp $ */ +/* $OpenBSD: config.h,v 1.9 2008/02/06 22:43:22 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -18,6 +18,8 @@ #ifndef CONFIG_H #define CONFIG_H +void cvs_modules_list(void); + void cvs_read_config(char *name, void (*cb)(char *, int)); void cvs_parse_configfile(void); @@ -51,6 +53,7 @@ struct module_checkout { struct module_info { char *mi_name; char *mi_prog; + char *mi_str; int mi_flags; struct cvs_flisthead mi_modules; |