]> andersk Git - openssh.git/blobdiff - sshpty.c
- stevesk@cvs.openbsd.org 2006/07/09 15:15:11
[openssh.git] / sshpty.c
index 9ac4903efa533bb7b9083392ea9ddd7b2516f4d8..7f4e8bc165a71e4ce267c6a1f37a0eb1e9bca39e 100644 (file)
--- a/sshpty.c
+++ b/sshpty.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: sshpty.c,v 1.22 2006/07/09 15:15:11 stevesk Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
 #include <sys/stat.h>
 #include <signal.h>
 
+#include <fcntl.h>
+#include <grp.h>
 #ifdef HAVE_PATHS_H
 # include <paths.h>
 #endif
+#include <pwd.h>
 #include <termios.h>
 #ifdef HAVE_UTIL_H
 # include <util.h>
@@ -209,6 +213,10 @@ pty_setowner(struct passwd *pw, const char *tty)
                fatal("stat(%.100s) failed: %.100s", tty,
                    strerror(errno));
 
+#ifdef WITH_SELINUX
+       ssh_selinux_setup_pty(pw->pw_name, tty);
+#endif
+
        if (st.st_uid != pw->pw_uid || st.st_gid != gid) {
                if (chown(tty, pw->pw_uid, gid) < 0) {
                        if (errno == EROFS &&
This page took 0.585262 seconds and 4 git commands to generate.