diff options
author | 2005-07-19 02:18:05 +0000 | |
---|---|---|
committer | 2005-07-19 02:18:05 +0000 | |
commit | d901b6564068ef1a11255322d05db948ba953805 (patch) | |
tree | 2a9351a680fc588f39809d4d38f50905dd9951ab | |
parent | spacing (diff) | |
download | wireguard-openbsd-d901b6564068ef1a11255322d05db948ba953805.tar.xz wireguard-openbsd-d901b6564068ef1a11255322d05db948ba953805.zip |
missing CF_IGNORE, CF_NOSYMS and CF_SORT flags.
gets the local mode of 'log' a bit closer to reality.
problems noticed by deraadt@
-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, |