summaryrefslogtreecommitdiff
path: root/coreutils/mv.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/mv.c')
-rw-r--r--coreutils/mv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mv.c b/coreutils/mv.c
index 64cae965b..c08d2327c 100644
--- a/coreutils/mv.c
+++ b/coreutils/mv.c
@@ -118,7 +118,7 @@ DO_MOVE:
118 copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS; 118 copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS;
119#if ENABLE_SELINUX 119#if ENABLE_SELINUX
120 copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT; 120 copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT;
121#endif 121#endif
122 if ((copy_file(*argv, dest, copy_flag) >= 0) && 122 if ((copy_file(*argv, dest, copy_flag) >= 0) &&
123 (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)) { 123 (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0)) {
124 goto RET_0; 124 goto RET_0;