=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/Attic/proto.c,v retrieving revision 1.60 retrieving revision 1.61 diff -c -r1.60 -r1.61 *** src/usr.bin/cvs/Attic/proto.c 2005/07/18 06:58:48 1.60 --- src/usr.bin/cvs/Attic/proto.c 2005/07/19 00:51:01 1.61 *************** *** 1,4 **** ! /* $OpenBSD: proto.c,v 1.60 2005/07/18 06:58:48 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: proto.c,v 1.61 2005/07/19 00:51:01 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 316,325 **** cvs_log(LP_WARN, "failed to get remote version"); /* now share our global options with the server */ ! if ((verbosity == 1) && (cvs_sendreq(root, CVS_REQ_GLOBALOPT, "-q") < 0)) return (-1); ! else if ((verbosity == 0) && (cvs_sendreq(root, CVS_REQ_GLOBALOPT, "-Q") < 0)) return (-1); --- 316,325 ---- cvs_log(LP_WARN, "failed to get remote version"); /* now share our global options with the server */ ! if ((verbosity <= 1) && (cvs_sendreq(root, CVS_REQ_GLOBALOPT, "-q") < 0)) return (-1); ! if ((verbosity == 0) && (cvs_sendreq(root, CVS_REQ_GLOBALOPT, "-Q") < 0)) return (-1);