diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-12-11 10:53:01 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-12-11 10:53:01 +0000 |
commit | f8673da60400e69b423a73274dccb643c72d91b7 (patch) | |
tree | 111a8780868321c86b2084f70be5e5533ffebba7 | |
parent | 435de0b43240fc368deb1b81da268e882a3ab469 (diff) |
global option -n implies -l
-rw-r--r-- | usr.bin/cvs/cvs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index e42b776c44b..8c175eb4c32 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.111 2006/12/11 07:59:18 xsa Exp $ */ +/* $OpenBSD: cvs.c,v 1.112 2006/12/11 10:53:00 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -319,6 +319,7 @@ cvs_getopt(int argc, char **argv) break; case 'n': cvs_noexec = 1; + cvs_nolog = 1; break; case 'Q': verbosity = 0; |