diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-07-19 02:18:06 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-07-19 02:18:06 +0000 |
commit | 4860c08ae8fa5ec70abedfbe79c3059fe5e5df1f (patch) | |
tree | 834d10f8128f2d29ebce889644129d539af96a73 /usr.bin | |
parent | 2632ff6f404a6813198929b589b29ca2900f5700 (diff) |
missing CF_IGNORE, CF_NOSYMS and CF_SORT flags.
gets the local mode of 'log' a bit closer to reality.
problems noticed by deraadt@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/getlog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c index 24771e8a7e8..c3242de0be9 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.39 2005/07/15 08:39:14 xsa Exp $ */ +/* $OpenBSD: getlog.c,v 1.40 2005/07/19 02:18:05 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -58,7 +58,7 @@ struct cvs_cmd cvs_cmd_log = { "[-bhlNRt] [-d dates] [-r revisions] [-s states] [-w logins]", "bd:hlNRr:s:tw:", NULL, - CF_RECURSE, + CF_NOSYMS | CF_IGNORE | CF_SORT | CF_RECURSE, cvs_getlog_init, cvs_getlog_pre_exec, cvs_getlog_remote, @@ -76,7 +76,7 @@ struct cvs_cmd cvs_cmd_rlog = { "[-bhlNRt] [-d dates] [-r revisions] [-s states] [-w logins]", "d:hlRr:", NULL, - CF_RECURSE, + CF_NOSYMS | CF_IGNORE | CF_SORT | CF_RECURSE, cvs_getlog_init, cvs_getlog_pre_exec, cvs_getlog_remote, |