Preserve suid/sgid bits
authorGlenn L McGrath <bug1@ihug.co.nz>
Mon, 8 Sep 2003 14:34:23 +0000 (14:34 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Mon, 8 Sep 2003 14:34:23 +0000 (14:34 -0000)
coreutils/chown.c

index 7b9ea91753f4c2a726d83b55bc3ae2a3715bf9d3..02b752474ae332ae27961bfc93b767f5a6c63ed0 100644 (file)
@@ -43,6 +43,7 @@ static int (*chown_func)(const char *, uid_t, gid_t) = chown;
 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
 {
        if (chown_func(fileName, uid, (gid == -1) ? statbuf->st_gid : gid) == 0) {
+               chmod(fileName, statbuf->st_mode);
                return (TRUE);
        }
        bb_perror_msg("%s", fileName);  /* Avoid multibyte problems. */