=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/diff.c,v retrieving revision 1.45 retrieving revision 1.46 diff -c -r1.45 -r1.46 *** src/usr.bin/cvs/diff.c 2005/07/09 18:56:16 1.45 --- src/usr.bin/cvs/diff.c 2005/07/10 13:53:51 1.46 *************** *** 1,4 **** ! /* $OpenBSD: diff.c,v 1.45 2005/07/09 18:56:16 niallo Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: diff.c,v 1.46 2005/07/10 13:53:51 xsa Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. *************** *** 205,211 **** --- 205,213 ---- char *date2; }; + extern int verbosity; + static int cvs_diff_init (struct cvs_cmd *, int, char **, int *); static int cvs_diff_remote (CVSFILE *, void *); static int cvs_diff_local (CVSFILE *, void *); *************** *** 596,602 **** diff_file = cvs_file_getpath(cf, fpath, sizeof(fpath)); if (cf->cf_type == DT_DIR) { ! cvs_log(LP_INFO, "Diffing %s", fpath); return (0); } --- 598,605 ---- diff_file = cvs_file_getpath(cf, fpath, sizeof(fpath)); if (cf->cf_type == DT_DIR) { ! if (verbosity > 1) ! cvs_log(LP_INFO, "Diffing %s", fpath); return (0); }