diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-13 18:01:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-13 18:01:10 +0000 |
commit | c6cb79dedfb1af4ce64e75cd1c0d3cc1bfa71225 (patch) | |
tree | 685c18e7a6e52b315c9b8a142b8b21fc55e635fc /coreutils/chown.c | |
parent | 5de3065f5870526a68adee314fe181af976a9246 (diff) | |
download | busybox-w32-c6cb79dedfb1af4ce64e75cd1c0d3cc1bfa71225.tar.gz busybox-w32-c6cb79dedfb1af4ce64e75cd1c0d3cc1bfa71225.tar.bz2 busybox-w32-c6cb79dedfb1af4ce64e75cd1c0d3cc1bfa71225.zip |
More stuff
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r-- | coreutils/chown.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c index bcaeea38e..8d6cffa14 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c | |||
@@ -48,9 +48,9 @@ static int fileAction(const char *fileName) | |||
48 | ((chownApp==TRUE)? uid: statBuf.st_uid), | 48 | ((chownApp==TRUE)? uid: statBuf.st_uid), |
49 | gid) < 0)) { | 49 | gid) < 0)) { |
50 | perror(fileName); | 50 | perror(fileName); |
51 | return( TRUE); | 51 | return( FALSE); |
52 | } | 52 | } |
53 | return( FALSE); | 53 | return( TRUE); |
54 | } | 54 | } |
55 | 55 | ||
56 | int chown_main(int argc, char **argv) | 56 | int chown_main(int argc, char **argv) |