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/diff.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/diff.c')
-rw-r--r-- | usr.bin/cvs/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c index d27f876ca84..ad29270dfd1 100644 --- a/usr.bin/cvs/diff.c +++ b/usr.bin/cvs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.95 2006/05/27 21:11:11 joris Exp $ */ +/* $OpenBSD: diff.c,v 1.96 2006/05/28 07:56:44 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -124,7 +124,7 @@ cvs_diff_local(struct cvs_file *cf) return; } - cvs_file_classify(cf); + cvs_file_classify(cf, 0); if (cf->file_status == FILE_LOST) { cvs_log(LP_ERR, "cannot find file %s", cf->file_path); |