From bcf224591508a0518ee5a1ff996b0bb628d14275 Mon Sep 17 00:00:00 2001 From: tobias Date: Mon, 28 Jan 2008 20:31:07 +0000 Subject: Properly handle -R -- although it is default, it may be overwritten mit -l in front of it. OK joris@, xsa@ > Diff from Igor Zinovik --- usr.bin/cvs/annotate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.bin/cvs/annotate.c') diff --git a/usr.bin/cvs/annotate.c b/usr.bin/cvs/annotate.c index 46782571018..1df9b47fdf1 100644 --- a/usr.bin/cvs/annotate.c +++ b/usr.bin/cvs/annotate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: annotate.c,v 1.43 2007/10/09 12:59:53 tobias Exp $ */ +/* $OpenBSD: annotate.c,v 1.44 2008/01/28 20:31:07 tobias Exp $ */ /* * Copyright (c) 2007 Tobias Stoeckmann * Copyright (c) 2006 Xavier Santolaria @@ -63,6 +63,7 @@ cvs_annotate(int argc, char **argv) flags &= ~CR_RECURSE_DIRS; break; case 'R': + flags |= CR_RECURSE_DIRS; break; case 'r': cvs_specified_tag = optarg; -- cgit v1.2.3-59-g8ed1b