mirror of
https://github.com/moby/moby.git
synced 2026-08-03 22:51:03 +00:00
Bump vendor kr/pty to commit 3b1f6487b (syscall.O_NOCTTY)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
2
vendor/src/github.com/kr/pty/pty_linux.go
vendored
2
vendor/src/github.com/kr/pty/pty_linux.go
vendored
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user