diff options
author | Peter Wemm <peter@FreeBSD.org> | 2008-01-07 09:11:23 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2008-01-07 09:11:23 +0000 |
commit | 7656d60a2a34591e5a19a33a938814ca15945eae (patch) | |
tree | 6bb18c5a9fccace08dbc5965c191638d3fa86345 | |
parent | 1fdc5a4248a5fbe19d138387e58bff58ed6eb634 (diff) |
MFC: rev 1.4: forward compatability with cvs-1.12 repository
Notes
Notes:
svn path=/stable/5/; revision=175126
-rw-r--r-- | contrib/cvs/src/parseinfo.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/cvs/src/parseinfo.c b/contrib/cvs/src/parseinfo.c index 38a11c6d2c11..5e34add5ea11 100644 --- a/contrib/cvs/src/parseinfo.c +++ b/contrib/cvs/src/parseinfo.c @@ -429,6 +429,16 @@ warning: this CVS does not support PreservePermissions"); else if (strcmp (p, "stat") == 0) RereadLogAfterVerify = LOGMSG_REREAD_STAT; } + else if (strcmp(line, "LocalKeyword") == 0) + { + /* Recognize cvs-1.12-style keyword control rather than erroring out. */ + RCS_setlocalid(p); + } + else if (strcmp(line, "KeywordExpand") == 0) + { + /* Recognize cvs-1.12-style keyword control rather than erroring out. */ + RCS_setincexc(p); + } else { /* We may be dealing with a keyword which was added in a |