1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #2066 from tianon/vendor-bump-kr-pty

Bump vendor kr/pty to commit 3b1f6487b (syscall.O_NOCTTY)
This commit is contained in:
Michael Crosby 2013-10-02 14:44:07 -07:00
commit 4778039dd2
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ git_clone () {
)
}
git_clone github.com/kr/pty 27435c699
git_clone github.com/kr/pty 3b1f6487b
git_clone github.com/gorilla/context/ 708054d61e5

View file

@ -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
}