summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/ci.c
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2005-10-17 15:33:13 +0000
committerJoris Vink <joris@cvs.openbsd.org>2005-10-17 15:33:13 +0000
commit9839ef3092d5236c710b1b5730a6bb5778aacbd1 (patch)
tree3672884d83fc901876bc145f9bf36514d4efc280 /usr.bin/rcs/ci.c
parent51a7d60f5b621aa7770b479716d6e61db32a8c62 (diff)
support -f flag for co;
'fine' niallo@
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r--usr.bin/rcs/ci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index a9f48a64c0c..860a457047d 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.40 2005/10/16 23:30:45 niallo Exp $ */
+/* $OpenBSD: ci.c,v 1.41 2005/10/17 15:33:12 joris Exp $ */
/*
* Copyright (c) 2005 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -242,7 +242,7 @@ checkin_main(int argc, char **argv)
(void)unlink(argv[i]);
if (lkmode != 0)
checkout_rev(file, frev, argv[i], lkmode,
- username);
+ username, 0);
rcs_lock_remove(file, frev);
rcs_close(file);
cvs_printf("done\n");
@@ -368,7 +368,7 @@ checkin_main(int argc, char **argv)
* Do checkout if -u or -l are specified.
*/
if (lkmode != 0 && !rflag)
- checkout_rev(file, newrev, argv[i], lkmode, username);
+ checkout_rev(file, newrev, argv[i], lkmode, username, 0);
/* File will NOW be synced */
rcs_close(file);