From 5794cf2f69d58d9ab8bb69f5295a98491b7e9d7d Mon Sep 17 00:00:00 2001 From: guenther Date: Thu, 7 May 2015 17:32:20 +0000 Subject: [PATCH] Whoops; missed updating a setfile() call. problem reported dcoppa; ok millert@ --- bin/cp/cp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/cp/cp.c b/bin/cp/cp.c index 0b4f4361e8a..cf8e0019096 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cp.c,v 1.37 2015/01/16 06:39:31 deraadt Exp $ */ +/* $OpenBSD: cp.c,v 1.38 2015/05/07 17:32:20 guenther Exp $ */ /* $NetBSD: cp.c,v 1.14 1995/09/07 06:14:51 jtc Exp $ */ /* @@ -360,7 +360,7 @@ copy(char *argv[], enum op type, int fts_options) * unmodified by the umask; arguably wrong, * but it's been that way forever. */ - if (pflag && setfile(curr->fts_statp, 0)) + if (pflag && setfile(curr->fts_statp, -1)) rval = 1; else if (fts_dne(curr)) (void)chmod(to.p_path, -- 2.20.1