=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/release.c,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/usr.bin/cvs/release.c 2005/07/13 14:35:17 1.13 --- src/usr.bin/cvs/release.c 2005/07/14 15:17:42 1.14 *************** *** 1,4 **** ! /* $OpenBSD: release.c,v 1.13 2005/07/13 14:35:17 xsa Exp $ */ /* * Copyright (c) 2005 Xavier Santolaria * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: release.c,v 1.14 2005/07/14 15:17:42 xsa Exp $ */ /* * Copyright (c) 2005 Xavier Santolaria * All rights reserved. *************** *** 161,168 **** else { /* test if dir has CVS/ directory */ if (stat(cdpath, &st) == -1) { ! cvs_log(LP_ERR, ! "no repository directory: %s", dpath); return (0); } } --- 161,170 ---- else { /* test if dir has CVS/ directory */ if (stat(cdpath, &st) == -1) { ! if (verbosity > 0) ! cvs_log(LP_ERR, ! "no repository directory: %s", ! dpath); return (0); } } *************** *** 236,242 **** } } } else { ! cvs_log(LP_ERR, "no such directory: %s", dpath); return (CVS_EX_DATA); } --- 238,245 ---- } } } else { ! if (verbosity > 0) ! cvs_log(LP_ERR, "no such directory: %s", dpath); return (CVS_EX_DATA); }