summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-08-15 10:08:00 +1000
committerDamien Miller <djm@mindrot.org>2000-08-15 10:08:00 +1000
commitc83aa8378447861b1bc0a030fdb32f78783dc979 (patch)
tree8e2588e3b3f39ce10565257f66e347cc1761f8d8
parent348c9b7a9564986000743fe379de21ae6f73f7d4 (diff)
- (djm) Avoid failures on Irix when ssh is not setuid. Fix from
Michael Stone <mstone@cs.loyola.edu>
-rw-r--r--ChangeLog2
-rw-r--r--uidswap.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index de8ddf38e..39ac03e5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
120000815 120000815
2 - (djm) More SunOS 4.1.x fixes from Nate Itkin <nitkin@europa.com> 2 - (djm) More SunOS 4.1.x fixes from Nate Itkin <nitkin@europa.com>
3 - (djm) Avoid failures on Irix when ssh is not setuid. Fix from
4 Michael Stone <mstone@cs.loyola.edu>
3 5
420000813 620000813
5 - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from 7 - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
diff --git a/uidswap.c b/uidswap.c
index 3fd0eefee..7745a976e 100644
--- a/uidswap.c
+++ b/uidswap.c
@@ -90,7 +90,7 @@ permanently_set_uid(uid_t uid)
90 if (sysconf(_SC_AUDIT)) { 90 if (sysconf(_SC_AUDIT)) {
91 debug("Setting sat id to %d", (int) uid); 91 debug("Setting sat id to %d", (int) uid);
92 if (satsetid(uid)) 92 if (satsetid(uid))
93 fatal("error setting satid: %.100s", strerror(errno)); 93 debug("error setting satid: %.100s", strerror(errno));
94 } 94 }
95#endif /* WITH_IRIX_AUDIT */ 95#endif /* WITH_IRIX_AUDIT */
96 96