aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chown.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-01-15 13:58:01 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-01-15 13:58:01 +0100
commit6830ade6aa91dad5afe6abf9d1e4f696f5641bf1 (patch)
tree0b7de8e0cbaa864f742901814f734549270e5ff9 /coreutils/chown.c
parent30a8652fbf16884490cee4a624f039a9ab587269 (diff)
downloadbusybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.tar.gz
busybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.tar.bz2
busybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.zip
whitespace fixes. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r--coreutils/chown.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c
index bb166d8fe..1a9127622 100644
--- a/coreutils/chown.c
+++ b/coreutils/chown.c
@@ -126,8 +126,8 @@ int chown_main(int argc UNUSED_PARAM, char **argv)
126 /* This matches coreutils behavior (almost - see below) */ 126 /* This matches coreutils behavior (almost - see below) */
127 param.chown_func = chown; 127 param.chown_func = chown;
128 if (OPT_NODEREF 128 if (OPT_NODEREF
129 /* || (OPT_RECURSE && !OPT_TRAVERSE_TOP): */ 129 /* || (OPT_RECURSE && !OPT_TRAVERSE_TOP): */
130 IF_DESKTOP( || (opt & (BIT_RECURSE|BIT_TRAVERSE_TOP)) == BIT_RECURSE) 130 IF_DESKTOP( || (opt & (BIT_RECURSE|BIT_TRAVERSE_TOP)) == BIT_RECURSE)
131 ) { 131 ) {
132 param.chown_func = lchown; 132 param.chown_func = lchown;
133 } 133 }