diff options
-rw-r--r-- | gnu/usr.bin/cvs/src/import.c | 7 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/src/rcs.c | 2 |
2 files changed, 1 insertions, 8 deletions
diff --git a/gnu/usr.bin/cvs/src/import.c b/gnu/usr.bin/cvs/src/import.c index 5699e2a2260..a97e70ea3d5 100644 --- a/gnu/usr.bin/cvs/src/import.c +++ b/gnu/usr.bin/cvs/src/import.c @@ -1198,10 +1198,8 @@ add_rcs_file (message, rcs, user, add_vhead, key_opt, if (fprintf (fprcs, "next ;\012") < 0) goto write_error; -#ifdef notyet if (fprintf (fprcs, "commitid %s;\012", global_session_id) < 0) goto write_error; -#endif #ifdef PRESERVE_PERMISSIONS_SUPPORT /* Store initial permissions if necessary. */ @@ -1258,11 +1256,8 @@ userfile); fprintf (fprcs, "date %s; author %s; state Exp;\012", altdate1, author) < 0 || fprintf (fprcs, "branches ;\012") < 0 || - fprintf (fprcs, "next ;\012") < 0 -#ifdef notyet - || + fprintf (fprcs, "next ;\012") < 0 || fprintf (fprcs, "commitid %s;\012", global_session_id) < 0 -#endif ) goto write_error; diff --git a/gnu/usr.bin/cvs/src/rcs.c b/gnu/usr.bin/cvs/src/rcs.c index 5684a7e3dbf..102698cefec 100644 --- a/gnu/usr.bin/cvs/src/rcs.c +++ b/gnu/usr.bin/cvs/src/rcs.c @@ -4921,9 +4921,7 @@ RCS_checkin (rcs, workfile, message, rev, flags) np->type = RCSFIELD; np->key = xstrdup ("commitid"); np->data = xstrdup(global_session_id); -#ifdef notyet addnode (delta->other_delta, np); -#endif #ifdef PRESERVE_PERMISSIONS_SUPPORT /* If permissions should be preserved on this project, then |