Do not fatal on failed lookup of group "tty".

Some platforms (eg AIX and Cygwin) do not have a "tty" group.  In those
cases we will fall back to making the tty device the user's primary
group, so do not fatal if the group lookup fails.  ok djm@
This commit is contained in:
Darren Tucker 2019-07-05 13:21:45 +10:00
Родитель 8b4cc4bdc8
Коммит c5cfa90e03
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -172,7 +172,7 @@ pty_setowner(struct passwd *pw, const char *tty)
/* Determine the group to make the owner of the tty. */
grp = getgrnam("tty");
if (grp == NULL)
fatal("no tty group");
debug("%s: no tty group", __func__);
gid = (grp != NULL) ? grp->gr_gid : pw->pw_gid;
mode = (grp != NULL) ? 0620 : 0600;