diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-05-11 22:50:10 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-05-11 22:50:10 +0000 |
commit | e1a16bfddbe8aa4885fec8d7f1828c619f6ec09b (patch) | |
tree | 96b8047f7d1875876383962ac8af47acf9a8af09 | |
parent | 218be02ebc0055cf59b8d3c0aafba73f55d01bbd (diff) |
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 }; |