=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rcs/co.c,v retrieving revision 1.62 retrieving revision 1.63 diff -c -r1.62 -r1.63 *** src/usr.bin/rcs/co.c 2006/03/16 04:04:57 1.62 --- src/usr.bin/rcs/co.c 2006/03/16 17:11:30 1.63 *************** *** 1,4 **** ! /* $OpenBSD: co.c,v 1.62 2006/03/16 04:04:57 ray Exp $ */ /* * Copyright (c) 2005 Joris Vink * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: co.c,v 1.63 2006/03/16 17:11:30 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink * All rights reserved. *************** *** 336,343 **** if (flags & CO_LOCK) { lcount++; ! if (lcount > 1) ! cvs_log(LP_WARN, "You now have %d locks.", lcount); } if ((pipeout == 0) && (stat(dst, &st) == 0) && !(flags & FORCE)) { --- 336,344 ---- if (flags & CO_LOCK) { lcount++; ! if ((verbose == 1) && (lcount > 1)) ! cvs_log(LP_WARN, "%s: warning: You now have %d locks.", ! file->rf_path, lcount); } if ((pipeout == 0) && (stat(dst, &st) == 0) && !(flags & FORCE)) {