Index: src/usr.bin/xinstall/xinstall.c =================================================================== RCS file: /cvs/src/usr.bin/xinstall/xinstall.c,v retrieving revision 1.43 diff -u -r1.43 xinstall.c --- src/usr.bin/xinstall/xinstall.c 2006/01/10 00:30:08 1.43 +++ src/usr.bin/xinstall/xinstall.c 2006/10/17 17:52:24 @@ -381,14 +381,22 @@ * 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)) { +#ifdef CITI + ; +#else serrno = errno; (void)unlink(to_name); errx(EX_OSERR, "%s: chmod: %s", to_name, strerror(serrno)); +#endif } /*