From 476bf8f7fcedcb4bc23b900715716f3fac897fdb Mon Sep 17 00:00:00 2001 From: Niall O'Higgins Date: Mon, 20 Mar 2006 16:18:14 +0000 Subject: 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@ --- usr.bin/rcs/ci.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'usr.bin/rcs/ci.c') 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 * 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); -- cgit v1.2.3