Add braces to fix wrong if-if-else-if nesting that broke `cp -pR' for

fifos.
This commit is contained in:
Bruce Evans 1995-04-02 00:49:16 +00:00
parent d8e3948cc1
commit 439b2b1e9c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7572

View File

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: cp.c,v 1.3 1994/12/30 13:12:12 bde Exp $
* $Id: cp.c,v 1.4 1995/01/25 07:31:01 davidg Exp $
*/
#ifndef lint
@ -389,17 +389,19 @@ copy(argv, type, fts_options)
if (Rflag) {
if (copy_special(curr->fts_statp, !dne))
rval = 1;
} else
} else {
if (copy_file(curr, dne))
rval = 1;
}
break;
case S_IFIFO:
if (Rflag)
if (Rflag) {
if (copy_fifo(curr->fts_statp, !dne))
rval = 1;
else
} else {
if (copy_file(curr, dne))
rval = 1;
}
break;
default:
if (copy_file(curr, dne))