summaryrefslogtreecommitdiff
path: root/sshpty.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-07-30 23:09:15 +0000
committerDamien Miller <djm@mindrot.org>2015-08-02 19:59:25 +1000
commit6f941396b6835ad18018845f515b0c4fe20be21a (patch)
tree18539a435ca653ea9279153eff7548e190ca0dee /sshpty.c
parentf4373ed1e8fbc7c8ce3fc4ea97d0ba2e0c1d7ef0 (diff)
upstream commit
fix pty permissions; patch from Nikolay Edigaryev; ok deraadt Upstream-ID: 40ff076d2878b916fbfd8e4f45dbe5bec019e550
Diffstat (limited to 'sshpty.c')
-rw-r--r--sshpty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshpty.c b/sshpty.c
index 7bb764163..15da8c649 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -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)
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.