diff options
author | djm@openbsd.org <djm@openbsd.org> | 2015-07-30 23:09:15 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2015-09-08 14:50:02 +0100 |
commit | 7c2583f26ff8eb848c53255a88574f923edaf94d (patch) | |
tree | ed90b47c072463671caeafe9072e49c00168471d | |
parent | c2ef7b500926be2f7d875d63ec72781b50d69294 (diff) |
Fix pty permissions
Origin: upstream, https://anongit.mindrot.org/openssh.git/commit/?id=6f941396b6835ad18018845f515b0c4fe20be21a
Forwarded: not-needed
Last-Update: 2015-08-19
Patch-Name: backport-fix-pty-permissions.patch
-rw-r--r-- | sshpty.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshpty.c,v 1.29 2014/09/03 18:55:07 djm Exp $ */ | 1 | /* $OpenBSD: sshpty.c,v 1.30 2015/07/30 23:09:15 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -197,7 +197,7 @@ pty_setowner(struct passwd *pw, const char *tty, const char *role) | |||
197 | /* Determine the group to make the owner of the tty. */ | 197 | /* Determine the group to make the owner of the tty. */ |
198 | grp = getgrnam("tty"); | 198 | grp = getgrnam("tty"); |
199 | gid = (grp != NULL) ? grp->gr_gid : pw->pw_gid; | 199 | gid = (grp != NULL) ? grp->gr_gid : pw->pw_gid; |
200 | mode = (grp != NULL) ? 0622 : 0600; | 200 | mode = (grp != NULL) ? 0620 : 0600; |
201 | 201 | ||
202 | /* | 202 | /* |
203 | * Change owner and mode of the tty as required. | 203 | * Change owner and mode of the tty as required. |