diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-02-09 03:49:16 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-02-09 03:49:16 +0000 |
commit | b8454476136d24180d40b2131db892c1e2b51328 (patch) | |
tree | 6f7bbaf5b7930a6457d20a2e5600919246d745c0 /usr.bin/cvs/status.c | |
parent | 3dd8993c39f938c0bd43a26121ba69f61e531868 (diff) |
remove the cvs_file_classify() `loud' argument, it was used
in the old school days and serves no purpose what so ever now.
otto@ mentioned this to me a while ago
Diffstat (limited to 'usr.bin/cvs/status.c')
-rw-r--r-- | usr.bin/cvs/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c index 3e5f9ced472..88ea2a6b49f 100644 --- a/usr.bin/cvs/status.c +++ b/usr.bin/cvs/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.71 2007/01/31 21:07:36 xsa Exp $ */ +/* $OpenBSD: status.c,v 1.72 2007/02/09 03:49:15 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org> @@ -124,7 +124,7 @@ cvs_status_local(struct cvs_file *cf) cvs_log(LP_TRACE, "cvs_status_local(%s)", cf->file_path); - cvs_file_classify(cf, NULL, 1); + cvs_file_classify(cf, NULL); if (cf->file_type == CVS_DIR) { if (verbosity > 1) |