diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-01-29 11:09:46 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-01-29 11:09:46 +0000 |
commit | ba436ab9282ad5591d955e2b1c422a3e7906feda (patch) | |
tree | f3049dff362480847f37fe1a2562615bdebda2f9 /usr.bin/cvs | |
parent | cf92e6837fc34745cc7b36d6da641a4a7dcc9d4e (diff) |
RCS_PARSE_FULLY needed here too, as in rlog(1);
Diffstat (limited to 'usr.bin/cvs')
-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 1b1a8c22e4e..e6114f61fcf 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.52 2006/01/27 15:26:38 xsa Exp $ */ +/* $OpenBSD: getlog.c,v 1.53 2006/01/29 11:09:45 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -223,7 +223,7 @@ cvs_getlog_local(CVSFILE *cf, void *arg) return (0); } - if ((rf = rcs_open(rcspath, RCS_READ)) == NULL) + if ((rf = rcs_open(rcspath, RCS_READ|RCS_PARSE_FULLY)) == NULL) fatal("cvs_getlog_local: rcs_open `%s': %s", rcspath, strerror(rcs_errno)); |