diff options
author | 2006-05-28 07:56:44 +0000 | |
---|---|---|
committer | 2006-05-28 07:56:44 +0000 | |
commit | 91e2b091cb2f3a4a6a0e2956a137d07316ce840e (patch) | |
tree | 532b975f70c74bb2287b29953fdef535d93e1470 /usr.bin/cvs/commit.c | |
parent | Use TEST_READY_RETRIES_TAPE instead of TEST_READY_RETRIES_DEFAULT, (diff) | |
download | wireguard-openbsd-91e2b091cb2f3a4a6a0e2956a137d07316ce840e.tar.xz wireguard-openbsd-91e2b091cb2f3a4a6a0e2956a137d07316ce840e.zip |
allow commands to shut up the output from cvs_file_classify
if the commands want to output certain stuff themselfs
Diffstat (limited to 'usr.bin/cvs/commit.c')
-rw-r--r-- | usr.bin/cvs/commit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c index 00d9bbb803f..b81e1f56cd3 100644 --- a/usr.bin/cvs/commit.c +++ b/usr.bin/cvs/commit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: commit.c,v 1.61 2006/05/28 04:32:54 joris Exp $ */ +/* $OpenBSD: commit.c,v 1.62 2006/05/28 07:56:44 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -113,7 +113,7 @@ cvs_commit_check_conflicts(struct cvs_file *cf) * cvs_file_classify makes the noise for us * XXX - we want that? */ - cvs_file_classify(cf); + cvs_file_classify(cf, 1); if (cf->file_type == CVS_DIR) { if (verbosity > 1) @@ -153,7 +153,7 @@ cvs_commit_local(struct cvs_file *cf) CVSENTRIES *entlist; cvs_log(LP_TRACE, "cvs_commit_local(%s)", cf->file_path); - cvs_file_classify(cf); + cvs_file_classify(cf, 0); if (cf->file_status == FILE_MODIFIED || cf->file_status == FILE_REMOVED) |