diff options
Diffstat (limited to 'libbb/copy_file.c')
-rw-r--r-- | libbb/copy_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/copy_file.c b/libbb/copy_file.c index 7005642..a6cfe12 100644 --- a/libbb/copy_file.c +++ b/libbb/copy_file.c @@ -254,7 +254,7 @@ int copy_file(const char *source, const char *dest, int flags) return -1; } if (con) { - if(setfilecon(dest, con) == -1) { + if (setfilecon(dest, con) == -1) { bb_perror_msg("setfilecon:%s,%s", dest, con); freecon(con); return -1; |