diff options
author | Damien Miller <djm@mindrot.org> | 2000-08-15 02:08:00 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-08-15 02:08:00 +0200 |
commit | c83aa8378447861b1bc0a030fdb32f78783dc979 (patch) | |
tree | 8e2588e3b3f39ce10565257f66e347cc1761f8d8 /uidswap.c | |
parent | - (djm) More SunOS 4.1.x fixes from Nate Itkin <nitkin@europa.com> (diff) | |
download | openssh-c83aa8378447861b1bc0a030fdb32f78783dc979.tar.xz openssh-c83aa8378447861b1bc0a030fdb32f78783dc979.zip |
- (djm) Avoid failures on Irix when ssh is not setuid. Fix from
Michael Stone <mstone@cs.loyola.edu>
Diffstat (limited to 'uidswap.c')
-rw-r--r-- | uidswap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ permanently_set_uid(uid_t uid) if (sysconf(_SC_AUDIT)) { debug("Setting sat id to %d", (int) uid); if (satsetid(uid)) - fatal("error setting satid: %.100s", strerror(errno)); + debug("error setting satid: %.100s", strerror(errno)); } #endif /* WITH_IRIX_AUDIT */ |