diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-04-02 00:49:16 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-04-02 00:49:16 +0000 |
| commit | 439b2b1e9cd064e5f54811a7ae70d4a2077e9462 (patch) | |
| tree | f22860551f2a0f681f9e4b0f18f4e96e1b51cd2b /bin | |
| parent | d8e3948cc1b14d852265e162e5625adb76942cba (diff) | |
Notes
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/cp/cp.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/cp/cp.c b/bin/cp/cp.c index 85cb9665c171..c051950300f7 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -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)) |
