diff options
author | Denis Vlasenko | 2007-03-20 11:30:28 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-03-20 11:30:28 +0000 |
commit | c86e052b81210e762f8ca6b79cb46b8c4bdfbfe0 (patch) | |
tree | 90608280101218f60c7d9181b913e92ba895799d /coreutils/mv.c | |
parent | e84aeb5bcb1a8398fce53aad9c0072ad73a8b5c9 (diff) | |
download | busybox-c86e052b81210e762f8ca6b79cb46b8c4bdfbfe0.zip busybox-c86e052b81210e762f8ca6b79cb46b8c4bdfbfe0.tar.gz |
fix accumulated whitespace and indentation damage
Diffstat (limited to 'coreutils/mv.c')
-rw-r--r-- | coreutils/mv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mv.c b/coreutils/mv.c index 64cae96..c08d232 100644 --- a/coreutils/mv.c +++ b/coreutils/mv.c @@ -118,7 +118,7 @@ DO_MOVE: copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS; #if ENABLE_SELINUX copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT; -#endif +#endif if ((copy_file(*argv, dest, copy_flag) >= 0) && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)) { goto RET_0; |