Bump vendor kr/pty to commit 3b1f6487b (syscall.O_NOCTTY)

Upstream-commit: cb21a4049052a012fd71dcaceef2bb57e1ed36f8
Component: engine
This commit is contained in:
Tianon Gravi
2013-10-01 19:48:50 -06:00
parent 19c8c1681c
commit 1ada892daf
2 changed files with 2 additions and 2 deletions
@@ -28,7 +28,7 @@ func open() (pty, tty *os.File, err error) {
return nil, nil, err
}
t, err := os.OpenFile(sname, os.O_RDWR, 0)
t, err := os.OpenFile(sname, os.O_RDWR|syscall.O_NOCTTY, 0)
if err != nil {
return nil, nil, err
}