summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2015-06-07 03:49:41 +0000
committerbdrewery <bdrewery@FreeBSD.org>2015-06-07 03:49:41 +0000
commit939189542ecd10392ffaf53f33e9ea26735a3b84 (patch)
treeca7e8f506545d4ad93988d4cdeac61d1ab6ba36e /bin
parenta1956e48c3811bb495369ba6221ef4d0930a78ef (diff)
downloadFreeBSD-src-939189542ecd10392ffaf53f33e9ea26735a3b84.zip
FreeBSD-src-939189542ecd10392ffaf53f33e9ea26735a3b84.tar.gz
Cleanup some indentation issues.
Diffstat (limited to 'bin')
-rw-r--r--bin/cp/utils.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/bin/cp/utils.c b/bin/cp/utils.c
index f58ed7a..f8cf6f4 100644
--- a/bin/cp/utils.c
+++ b/bin/cp/utils.c
@@ -122,18 +122,17 @@ copy_file(const FTSENT *entp, int dne)
/* remove existing destination file name,
* create a new file */
(void)unlink(to.p_path);
- if (!lflag)
+ if (!lflag) {
to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT,
fs->st_mode & ~(S_ISUID | S_ISGID));
- } else {
- if (!lflag)
- /* overwrite existing destination file name */
- to_fd = open(to.p_path, O_WRONLY | O_TRUNC, 0);
+ }
+ } else if (!lflag) {
+ /* overwrite existing destination file name */
+ to_fd = open(to.p_path, O_WRONLY | O_TRUNC, 0);
}
- } else {
- if (!lflag)
- to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT,
- fs->st_mode & ~(S_ISUID | S_ISGID));
+ } else if (!lflag) {
+ to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT,
+ fs->st_mode & ~(S_ISUID | S_ISGID));
}
if (to_fd == -1) {
OpenPOWER on IntegriCloud