1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Fix bug 5366

This commit is contained in:
Volker Lendecke 2008-04-11 11:34:33 +02:00
parent e0947537e6
commit 448a8fe6c1

View File

@ -159,7 +159,12 @@ static int dochild(int master, const char *slavedev, const struct passwd *pass,
DEBUG(3, ("More weirdness, could not open %s\n", slavedev));
return (False);
}
#if defined(TIOCSCTTY)
#if defined(TIOCSCTTY) && !defined(SUNOS5)
/*
* On patched Solaris 10 TIOCSCTTY is defined but seems not to work,
* see the discussion under
* https://bugzilla.samba.org/show_bug.cgi?id=5366.
*/
if (ioctl(slave, TIOCSCTTY, 0) < 0)
{
DEBUG(3, ("Error in ioctl call for slave pty\n"));