summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2005-08-31 09:59:49 -0700
committerTim Rice <tim@multitalents.net>2005-08-31 09:59:49 -0700
commit66fd217e8e57f0c86179d77dc14e42efd3098320 (patch)
tree647dc150f96b27987211df1c77879111e0f0eac9 /session.c
parentd0a47cd2435abdbb4aaabbdd408e855431ce9ccd (diff)
- (tim) [configure.ac auth.c defines.h session.c openbsd-compat/port-uw.c
openbsd-compat/port-uw.h openbsd-compat/xcrypt.c] libiaf cleanup. Disable libiaf bits for OpenServer6. Free memory allocated by ia_get_logpwd(). Feedback and OK dtucker@
Diffstat (limited to 'session.c')
-rw-r--r--session.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/session.c b/session.c
index 98bd3121c..db8722f47 100644
--- a/session.c
+++ b/session.c
@@ -1334,11 +1334,11 @@ do_setusercontext(struct passwd *pw)
1334# ifdef _AIX 1334# ifdef _AIX
1335 aix_usrinfo(pw); 1335 aix_usrinfo(pw);
1336# endif /* _AIX */ 1336# endif /* _AIX */
1337# ifdef HAVE_LIBIAF 1337#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
1338 if (set_id(pw->pw_name) != 0) { 1338 if (set_id(pw->pw_name) != 0) {
1339 exit(1); 1339 exit(1);
1340 } 1340 }
1341# endif 1341#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
1342 /* Permanently switch to the desired uid. */ 1342 /* Permanently switch to the desired uid. */
1343 permanently_set_uid(pw); 1343 permanently_set_uid(pw);
1344#endif 1344#endif