14 lines
512 B
Diff
14 lines
512 B
Diff
diff -up openssh-5.8p1/session.c.pwchange openssh-5.8p1/session.c
|
|
--- openssh-5.8p1/session.c.pwchange 2011-04-22 09:33:52.000000000 +0200
|
|
+++ openssh-5.8p1/session.c 2011-04-22 09:37:14.090653775 +0200
|
|
@@ -1547,6 +1547,9 @@ do_pwchange(Session *s)
|
|
if (s->ttyfd != -1) {
|
|
fprintf(stderr,
|
|
"You must change your password now and login again!\n");
|
|
+#ifdef WITH_SELINUX
|
|
+ setexeccon(NULL);
|
|
+#endif
|
|
#ifdef PASSWD_NEEDS_USERNAME
|
|
execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
|
|
(char *)NULL);
|