From 030704f5f30d385048c3a6b60f11ff94cab2626f Mon Sep 17 00:00:00 2001 From: Jim Turner Date: Tue, 17 Feb 2015 01:33:29 -0500 Subject: [PATCH] Remove outdated error message Commit 5dbcabdf2636300f6877e6bab27ef51c7b739a8f removed the `chown` call in `_tmp_create()` but not the associated error message. This commit removes that error message since it is just dead code. --- tomb | 3 --- 1 file changed, 3 deletions(-) diff --git a/tomb b/tomb index 70750c5..0ecebd6 100755 --- a/tomb +++ b/tomb @@ -271,9 +271,6 @@ _tmp_create() { [[ $? == 0 ]] || { _failure "Fatal error creating a temporary file: ::1 temp file::" "$tfile" } - [[ $? == 0 ]] || { - _failure "Fatal error setting ownership on temporary file: ::1 temp file::" "$tfile" } - _verbose "Created tempfile: ::1 temp file::" "$tfile" TOMBTMP="$tfile" TOMBTMPFILES+=("$tfile")