summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1994-06-14 02:57:09 +0000
committerrgrimes <rgrimes@FreeBSD.org>1994-06-14 02:57:09 +0000
commit82999a90dca3db9716e3eaa0685ee4b795e0b8d6 (patch)
tree96d1d782e219e7438d14ce278038785779b15a95 /gnu
parent2fc5eb3a3748cb15db4509e9627c86b2dc645512 (diff)
downloadFreeBSD-src-82999a90dca3db9716e3eaa0685ee4b795e0b8d6.zip
FreeBSD-src-82999a90dca3db9716e3eaa0685ee4b795e0b8d6.tar.gz
Clean up small error in the ncvs code that was causing rcs co to be
called with -K-Keoptions -Kioptions. This should fix the problem with $Id$ still getting changed. I am also install both ncvs and ocvs on freefall with this change as ocvs still had the bug with -I \! which I fixed but did not reinstall.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/cvs/cvs/checkout.c6
-rw-r--r--gnu/usr.bin/cvs/cvs/update.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/gnu/usr.bin/cvs/cvs/checkout.c b/gnu/usr.bin/cvs/cvs/checkout.c
index 31ec591..e7bc608 100644
--- a/gnu/usr.bin/cvs/cvs/checkout.c
+++ b/gnu/usr.bin/cvs/cvs/checkout.c
@@ -222,8 +222,10 @@ checkout (argc, argv)
argv += optind;
#ifdef FREEBSD_DEVELOPER
- if (!K_flag && freebsd)
- K_flag = "-KeAuthor,Date,Header,Id,Locker,Log,RCSfile,Revision,Source,State -KiFreeBSD";
+ if (!K_flag && freebsd) {
+ /* XXX Note: The leading -K is not needed, it gets added later! */
+ K_flag = "eAuthor,Date,Header,Id,Locker,Log,RCSfile,Revision,Source,State -KiFreeBSD";
+ }
#endif /* FREEBSD_DEVELOPER */
if (shorten == -1)
shorten = 0;
diff --git a/gnu/usr.bin/cvs/cvs/update.c b/gnu/usr.bin/cvs/cvs/update.c
index d68f5f2..d91ffdd 100644
--- a/gnu/usr.bin/cvs/cvs/update.c
+++ b/gnu/usr.bin/cvs/cvs/update.c
@@ -190,8 +190,10 @@ update (argc, argv)
argv += optind;
#ifdef FREEBSD_DEVELOPER
- if (!K_flag && freebsd)
- K_flag = "-KeAuthor,eDate,eHeader,eId,eLocker,eLog,eRCSfile,eRevision,eSource,eState,iFreeBSD";
+ if (!K_flag && freebsd) {
+ /* XXX Note: The leading -K is not needed, it gets added later! */
+ K_flag = "eAuthor,eDate,eHeader,eId,eLocker,eLog,eRCSfile,eRevision,eSource,eState,iFreeBSD";
+ }
#endif /* FREEBSD_DEVELOPER */
/*
OpenPOWER on IntegriCloud