diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2008-06-10 01:00:36 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2008-06-10 01:00:36 +0000 |
commit | 9871af5b3959da6fb3438ea15e89bd35368b5ddf (patch) | |
tree | c333bfc469513312bd0c2809225fe699c694fb17 /usr.bin/cvs/checkout.c | |
parent | 06b9f18cd5ed2ebd5b5b5b7837380ee2a5b8f116 (diff) |
New trigger framework that allows us to run the required scripts
defined in CVSROOT/commitinfo and CVSROOT/loginfo and so on.
This enables the use of log_accum2 and all that other nice stuff we like.
This was mostly written by Jonathan Armani with help from tobias@ and myself.
ok tobias@
Diffstat (limited to 'usr.bin/cvs/checkout.c')
-rw-r--r-- | usr.bin/cvs/checkout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/checkout.c b/usr.bin/cvs/checkout.c index c5ed6feebda..13574b4f511 100644 --- a/usr.bin/cvs/checkout.c +++ b/usr.bin/cvs/checkout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: checkout.c,v 1.146 2008/06/08 21:48:56 joris Exp $ */ +/* $OpenBSD: checkout.c,v 1.147 2008/06/10 01:00:34 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -330,7 +330,7 @@ checkout_check_repository(int argc, char **argv) if (nflag != 1 && mc->mc_prog != NULL && mc->mc_flags & MODULE_RUN_ON_CHECKOUT) - cvs_exec(mc->mc_prog); + cvs_exec(mc->mc_prog, NULL, 0); if (module_repo_root != NULL) xfree(module_repo_root); |