diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-12-03 13:00:01 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-12-03 13:00:01 +0000 |
commit | 5652cf70d1907362b0d7f661c5edbbf19e021b8e (patch) | |
tree | d56017767517f8c8e39921282af1b8e0dd09e8e2 /usr.bin/cvs | |
parent | 73a363d793e201d710f4499f60437e57e14f0825 (diff) |
respect Q flag in output;
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/update.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c index 62f4cff1c66..b8de561a228 100644 --- a/usr.bin/cvs/update.c +++ b/usr.bin/cvs/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.45 2005/12/03 01:02:09 joris Exp $ */ +/* $OpenBSD: update.c,v 1.46 2005/12/03 13:00:00 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -236,7 +236,8 @@ cvs_update_local(CVSFILE *cf, void *arg) cvs_file_getpath(cf, fpath, sizeof(fpath)); if (cf->cf_cvstat == CVS_FST_UNKNOWN) { - cvs_printf("? %s\n", fpath); + if (verbosity > 1) + cvs_printf("? %s\n", fpath); return (CVS_EX_OK); } |