diff options
author | Pádraig Brady <P@draigBrady.com> | 2009-09-05 17:21:17 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2009-09-05 17:22:09 +0100 |
commit | a5e224d7931dced1acb37befb0d895fb85e30108 (patch) | |
tree | 5a7e6c0b4c6ad46c96947333c7c66c9d1d04633a | |
parent | 526a057602f7f312443ae4ec0653fec84bca9ff2 (diff) | |
download | coreutils-a5e224d7931dced1acb37befb0d895fb85e30108.tar.xz |
maint: remove some tab indentation from copy.c
* src/copy.c (copy_internal): Remove tabs erroneously added
in commit 3346c0af.
-rw-r--r-- | src/copy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/copy.c b/src/copy.c index 178a6404b..f3ff5a286 100644 --- a/src/copy.c +++ b/src/copy.c @@ -1988,9 +1988,9 @@ copy_internal (char const *src_name, char const *dst_name, FIXME - use a gnulib linkat emulation for more fine-tuned emulation, particularly when LINK_FOLLOWS_SYMLINKS is -1. */ else if (x->hard_link - && (!LINK_FOLLOWS_SYMLINKS - || !S_ISLNK (src_mode) - || x->dereference != DEREF_NEVER)) + && (!LINK_FOLLOWS_SYMLINKS + || !S_ISLNK (src_mode) + || x->dereference != DEREF_NEVER)) { if (link (src_name, dst_name)) { |