diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | session.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ | |||
1 | 20130123 | ||
2 | - (tim) [session.c] Improve error reporting on set_id(). | ||
3 | |||
1 | 20130122 | 4 | 20130122 |
2 | - (djm) [openbsd-compat/setproctitle.c] Don't fail to compile if a | 5 | - (djm) [openbsd-compat/setproctitle.c] Don't fail to compile if a |
3 | platform that is expected to use the reuse-argv style setproctitle | 6 | platform that is expected to use the reuse-argv style setproctitle |
@@ -1554,7 +1554,7 @@ do_setusercontext(struct passwd *pw) | |||
1554 | #else | 1554 | #else |
1555 | # ifdef USE_LIBIAF | 1555 | # ifdef USE_LIBIAF |
1556 | if (set_id(pw->pw_name) != 0) { | 1556 | if (set_id(pw->pw_name) != 0) { |
1557 | exit(1); | 1557 | fatal("set_id(%s) Failed", pw->pw_name); |
1558 | } | 1558 | } |
1559 | # endif /* USE_LIBIAF */ | 1559 | # endif /* USE_LIBIAF */ |
1560 | /* Permanently switch to the desired uid. */ | 1560 | /* Permanently switch to the desired uid. */ |