summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
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