--- src/usr.bin/xinstall/xinstall.c- Sat Feb 16 16:27:59 2002 +++ src/usr.bin/xinstall/xinstall.c Tue Jun 25 16:58:13 2002 @@ -389,9 +389,13 @@ * chown may lose the setuid bits. */ if ((gid != (gid_t)-1 || uid != (uid_t)-1) && fchown(to_fd, uid, gid)) { +#ifdef CITI + ; +#else serrno = errno; (void)unlink(to_name); errx(EX_OSERR, "%s: chown/chgrp: %s", to_name, strerror(serrno)); +#endif } if (fchmod(to_fd, mode)) { serrno = errno;