summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/status.c
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@cvs.openbsd.org>2008-01-28 20:31:08 +0000
committerTobias Stoeckmann <tobias@cvs.openbsd.org>2008-01-28 20:31:08 +0000
commitbf7135c7ea4db345cb2522857eb152e8ab13c639 (patch)
tree5ad7d2fdf7e2fe4a6817a4bee5a19030a725bd5f /usr.bin/cvs/status.c
parent70ece8be1d4df61fee1848497ed18b744905a684 (diff)
Properly handle -R -- although it is default, it may be overwritten mit -l
in front of it. OK joris@, xsa@ > Diff from Igor Zinovik
Diffstat (limited to 'usr.bin/cvs/status.c')
-rw-r--r--usr.bin/cvs/status.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c
index 82faa18cdde..843c9cb1578 100644
--- a/usr.bin/cvs/status.c
+++ b/usr.bin/cvs/status.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: status.c,v 1.78 2008/01/10 09:37:26 tobias Exp $ */
+/* $OpenBSD: status.c,v 1.79 2008/01/28 20:31:07 tobias Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
@@ -69,6 +69,7 @@ cvs_status(int argc, char **argv)
flags &= ~CR_RECURSE_DIRS;
break;
case 'R':
+ flags |= CR_RECURSE_DIRS;
break;
case 'v':
show_sym = 1;