summaryrefslogtreecommitdiff
path: root/auth-sia.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-11-22 14:25:15 +1100
committerDarren Tucker <dtucker@zip.com.au>2003-11-22 14:25:15 +1100
commit4e06a1d75d0f692c84f21347d4e1c4242dc1a96e (patch)
tree7ebbb2d480891d9bf751fa1f5f6fb03e8aad365f /auth-sia.c
parentd76341616dfebd4addc9c9594767ab1832ccb100 (diff)
downloadopenssh-git-4e06a1d75d0f692c84f21347d4e1c4242dc1a96e.tar.gz
- (dtucker) [auth-sia.c configure.ac] Tru64 update from cmadams at hiwaay.net.
Use permanently_set_uid for SIA, only define DISABLE_FD_PASSING when SIA is enabled, rely on SIA to check for locked accounts if enabled. ok djm@
Diffstat (limited to 'auth-sia.c')
-rw-r--r--auth-sia.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/auth-sia.c b/auth-sia.c
index cdd39d67..cd2dcb84 100644
--- a/auth-sia.c
+++ b/auth-sia.c
@@ -31,6 +31,7 @@
#include "log.h"
#include "servconf.h"
#include "canohost.h"
+#include "uidswap.h"
#include <sia.h>
#include <siad.h>
@@ -103,8 +104,8 @@ session_setup_sia(struct passwd *pw, char *tty)
sia_ses_release(&ent);
- if (setreuid(geteuid(), geteuid()) < 0)
- fatal("setreuid: %s", strerror(errno));
+ setuid(0);
+ permanently_set_uid(pw);
}
#endif /* HAVE_OSF_SIA */