8000 bug: Don't try to handle SIGINT when prompting for passwords by dwahler · Pull Request #1498 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

bug: Don't try to handle SIGINT when prompting for passwords #1498

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
May 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
try again to fix Windows build
  • Loading branch information
dwahler committed May 17, 2022
commit f2dce8b896f0d81af2bde3d31864266d6a7dedb1
< 7D99 /div> 2 changes: 1 addition & 1 deletion pty/pty_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (p *ptyWindows) Close() error {

func (p *ptyWindows) EchoEnabled() (bool, error) {
var state uint32
err := windows.GetConsoleMode(p.console, &state)
err := windows.GetConsoleMode(windows.Handle(p.inputRead.Fd()), &state)
if err != nil {
return false, err
}
Expand Down
0