diff options
author | 2005-05-11 22:50:09 +0000 | |
---|---|---|
committer | 2005-05-11 22:50:09 +0000 | |
commit | fcc159186bee4275636e07b1abfea9f0e0150d7e (patch) | |
tree | 5e3ac38b4d05f6aa61a2707988860a0896fa6caf | |
parent | some punctuation/whitespace cleanup from stuart henderson (pr #4183); (diff) | |
download | wireguard-openbsd-fcc159186bee4275636e07b1abfea9f0e0150d7e.tar.xz wireguard-openbsd-fcc159186bee4275636e07b1abfea9f0e0150d7e.zip |
missing CF_IGNORE flag
-rw-r--r-- | usr.bin/cvs/getlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c index 5deabf6a310..f60308eb280 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.23 2005/04/18 21:02:50 jfb Exp $ */ +/* $OpenBSD: getlog.c,v 1.24 2005/05/11 22:50:09 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -57,7 +57,7 @@ struct cvs_cmd_info cvs_getlog = { NULL, cvs_getlog_remote, NULL, NULL, - CF_RECURSE, + CF_IGNORE | CF_RECURSE, CVS_REQ_LOG, CVS_CMD_SENDDIR | CVS_CMD_ALLOWSPEC | CVS_CMD_SENDARGS2 }; |