diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-12-30 17:51:02 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-12-30 17:51:02 +0000 |
commit | 2f1666bdc94f01cc8dfd259b207b47298e19cf06 (patch) | |
tree | f9b8ee9ed3ea95991a763841bd861ed018936e2c /usr.bin/cvs/checkout.c | |
parent | c86e0732da12eb4c15d8bab268290ef5f3dfacb2 (diff) |
knf
Diffstat (limited to 'usr.bin/cvs/checkout.c')
-rw-r--r-- | usr.bin/cvs/checkout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/checkout.c b/usr.bin/cvs/checkout.c index c52968e25d4..bc24ea5a57f 100644 --- a/usr.bin/cvs/checkout.c +++ b/usr.bin/cvs/checkout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: checkout.c,v 1.42 2005/12/30 02:03:28 joris Exp $ */ +/* $OpenBSD: checkout.c,v 1.43 2005/12/30 17:51:01 reyk Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -237,8 +237,8 @@ cvs_checkout_pre_exec(struct cvsroot *root) snprintf(repo, sizeof(repo), "%s/%s", root->cr_dir, co_mods[i]); currepo = co_mods[i]; - ret = cvs_file_get(repo, CF_RECURSE | CF_REPO | CF_IGNORE, - cvs_checkout_local, NULL, NULL); + ret = cvs_file_get(repo, CF_RECURSE | CF_REPO | + CF_IGNORE, cvs_checkout_local, NULL, NULL); if (ret != CVS_EX_OK) { closedir(dirp); return (ret); |