summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/ci.c
diff options
context:
space:
mode:
authorNiall O'Higgins <niallo@cvs.openbsd.org>2006-03-06 15:04:18 +0000
committerNiall O'Higgins <niallo@cvs.openbsd.org>2006-03-06 15:04:18 +0000
commit6743193d5a25979dc8b8e72f966e14fc229a45f3 (patch)
tree9589cc5db54f2f9fca3e422d67b2b2d1a6c4f9f0 /usr.bin/rcs/ci.c
parent67ec88fc78a33248294b59db6a3ff1688860e177 (diff)
like gnu ci(1), continue to process valid files in argv even if some are
invalid. ok xsa@
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r--usr.bin/rcs/ci.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index 0753d4afb18..76b0e6f756f 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.108 2006/03/06 14:49:54 jmc Exp $ */
+/* $OpenBSD: ci.c,v 1.109 2006/03/06 15:04:17 niallo Exp $ */
/*
* Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -488,7 +488,6 @@ checkin_update(struct checkin_params *pb)
/* Load file contents */
if ((bp = cvs_buf_load(pb->filename, BUF_AUTOEXT)) == NULL) {
- cvs_log(LP_ERR, "failed to load '%s'", pb->filename);
rcs_close(pb->file);
return (-1);
}
@@ -598,7 +597,6 @@ checkin_init(struct checkin_params *pb)
/* Load file contents */
if ((bp = cvs_buf_load(pb->filename, BUF_AUTOEXT)) == NULL) {
- cvs_log(LP_ERR, "failed to load '%s'", pb->filename);
rcs_close(pb->file);
return (-1);
}