diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-12-27 16:36:04 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-12-27 16:36:04 +0000 |
commit | edcfcc685d091c58d00f492b26cc339914d76fb6 (patch) | |
tree | bc34a876217a53c9d5db379dd6ff4fc79d30d89e /usr.bin/rcs/rlog.c | |
parent | 51ed52f34fc32f925fda9d391d9dc46c9c6c21a2 (diff) |
- rlog(1) needs RCS_PARSE_FULLY too.
Diffstat (limited to 'usr.bin/rcs/rlog.c')
-rw-r--r-- | usr.bin/rcs/rlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/rlog.c b/usr.bin/rcs/rlog.c index d3d5dd810c8..e7453a330e1 100644 --- a/usr.bin/rcs/rlog.c +++ b/usr.bin/rcs/rlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rlog.c,v 1.16 2005/12/02 09:55:39 xsa Exp $ */ +/* $OpenBSD: rlog.c,v 1.17 2005/12/27 16:36:03 niallo Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -113,7 +113,7 @@ rlog_main(int argc, char **argv) if (rcs_statfile(argv[i], fpath, sizeof(fpath)) < 0) continue; - if ((file = rcs_open(fpath, RCS_READ)) == NULL) + if ((file = rcs_open(fpath, RCS_READ|RCS_PARSE_FULLY)) == NULL) continue; if ((Lflag == 1) && (TAILQ_EMPTY(&(file->rf_locks)))) { |