summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/ci.c
diff options
context:
space:
mode:
authorNiall O'Higgins <niallo@cvs.openbsd.org>2006-03-20 16:18:14 +0000
committerNiall O'Higgins <niallo@cvs.openbsd.org>2006-03-20 16:18:14 +0000
commit476bf8f7fcedcb4bc23b900715716f3fac897fdb (patch)
tree0853b8ff04059c83bfb8c1fe1cbb6f706e4558fc /usr.bin/rcs/ci.c
parentde50169127deba14884eaef1d8cb8c81f01abf41 (diff)
delint; cvs_buf_write_stmp() will never return non-zero:
- remove superfluous error handling for cvs_buf_write_stmp() - change cvs_buf_write_stmp() return type to void ok joris@ xsa@
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r--usr.bin/rcs/ci.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index e9e382f46a8..4ac206fa4d2 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.122 2006/03/17 07:32:03 ray Exp $ */
+/* $OpenBSD: ci.c,v 1.123 2006/03/20 16:18:13 niallo Exp $ */
/*
* Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -323,8 +323,7 @@ checkin_diff_file(struct checkin_params *pb)
strlcpy(path1, rcs_tmpdir, sizeof(path1));
strlcat(path1, "/diff1.XXXXXXXXXX", sizeof(path1));
- if (cvs_buf_write_stmp(b1, path1, 0600) == -1)
- goto out;
+ cvs_buf_write_stmp(b1, path1, 0600);
cvs_worklist_add(path1, &rcs_temp_files);
cvs_buf_free(b1);
@@ -332,8 +331,7 @@ checkin_diff_file(struct checkin_params *pb)
strlcpy(path2, rcs_tmpdir, sizeof(path2));
strlcat(path2, "/diff2.XXXXXXXXXX", sizeof(path2));
- if (cvs_buf_write_stmp(b2, path2, 0600) == -1)
- goto out;
+ cvs_buf_write_stmp(b2, path2, 0600);
cvs_worklist_add(path2, &rcs_temp_files);
cvs_buf_free(b2);