diff options
Diffstat (limited to 'sshpty.c')
-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. |